stralloc.h | 26 } stralloc_t; typedef in typeref:struct:__anon27494 29 #define STRALLOC_DEFINE(s) stralloc_t s[1] = { STRALLOC_INIT } 31 extern void stralloc_reset( stralloc_t* s ); 32 extern void stralloc_ready( stralloc_t* s, unsigned len ); 33 extern void stralloc_readyplus( stralloc_t* s, unsigned len ); 35 extern void stralloc_copy( stralloc_t* s, stralloc_t* from ); 36 extern void stralloc_append( stralloc_t* s, stralloc_t* from ); 38 extern void stralloc_add_c( stralloc_t* s, int c ) [all...] |