mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 19:13:07 +00:00
11 lines
256 B
C
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
|