Resolved memory haemorrhage in perl replay implementation.
[svn-fe.git] / string_pool.h
blob2099a114c946610f6bfafa12311476d1001f5404
1 #ifndef STRING_POOL_H_
2 #define STRING_POOL_H_
4 #include <stdint.h>
5 #include <stdio.h>
7 uint32_t pool_intern(char *key);
9 uint32_t pool_tok_r(char *str, const char *delim, char **saveptr);
11 void pool_print_seq(uint32_t len, uint32_t * seq, char delim, FILE * stream);
13 #endif