Searched refs:s_grow (Results 1 – 3 of 3) sorted by relevance
58 #define s_putc(s,c) (((s)->ptr < (s)->end) ? (*((s)->ptr)++ = (char)(c)) : s_grow((s),(c)))63 #define s_terminate(s) (((s)->ptr < (s)->end) ? (*(s)->ptr = 0) : (s_grow((s),0), (s)->ptr--, 0))72 extern int s_grow(string *sp, int c);86 extern int s_grow();
72 s_grow;
132 s_grow(string *sp, int c) in s_grow() function