Implement buffer for log messages.
[svn-fe.git] / string_pool.h
blob870e25c032346c9709ac314f4af31280505554af
1 #ifndef STRING_POOL_H_
2 #define STRING_POOL_H_
4 #include <stdint.h>
5 #include <stdio.h>
7 uint32_t pool_tok_r(char *str, const char *delim, char **saveptr);
8 void pool_print_seq(uint32_t len, uint32_t *seq, char delim, FILE *stream);
9 uint32_t pool_tok_seq(uint32_t max, uint32_t *seq, char *delim, char *str);
10 void pool_reset(void);
12 #endif