Files
skynet/lua-protobuf/stringpool.h
2012-08-09 16:48:28 +08:00

11 lines
256 B
C

#ifndef PROTOBUF_C_STRINGPOOL_H
#define PROTOBUF_C_STRINGPOOL_H
struct _stringpool;
struct _stringpool * _pbcS_new(void);
void _pbcS_delete(struct _stringpool *pool);
const char * _pbcS_build(struct _stringpool *pool, const char * str , int sz);
#endif