Home
last modified time | relevance | path

Searched refs:s_grow (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/lib/libmail/inc/
H A Ds_string.h58 #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();
/titanic_50/usr/src/lib/libmail/common/
H A Dmapfile-vers72 s_grow;
H A Ds_string.c132 s_grow(string *sp, int c) in s_grow() function