]> git.ipfire.org Git - thirdparty/git.git/blame - vcs-svn/string_pool.h
vcs-svn: quote paths correctly for ls command
[thirdparty/git.git] / vcs-svn / string_pool.h
CommitLineData
1d73b52f
DB
1#ifndef STRING_POOL_H_
2#define STRING_POOL_H_
3
4uint32_t pool_intern(const char *key);
5const char *pool_fetch(uint32_t entry);
6uint32_t pool_tok_r(char *str, const char *delim, char **saveptr);
723b7a27 7void pool_print_seq(uint32_t len, const uint32_t *seq, char delim, FILE *stream);
e4358112 8void pool_print_seq_q(uint32_t len, const uint32_t *seq, char delim, FILE *stream);
1d73b52f
DB
9uint32_t pool_tok_seq(uint32_t sz, uint32_t *seq, const char *delim, char *str);
10void pool_reset(void);
11
12#endif