Home
last modified time | relevance | path

Searched refs:s_putc (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/lib/libmail/common/
H A Ds_string.c135 s_putc(sp, c); in s_grow()
196 s_putc(to, (int)(unsigned int)*from); in s_append()
256 s_putc(to, (int)(unsigned int)'\\'); in s_seq_read()
257 s_putc(to, c); in s_seq_read()
274 s_putc(to, c); in s_seq_read()
289 s_putc(to, (int)(unsigned int)*from->ptr); in s_tok()
336 s_putc(to, (int)(unsigned int)'\n'); in s_read_line()
340 s_putc(to, c); in s_read_line()
399 s_putc(to, (int)(unsigned int)*from->ptr); in s_parse()
405 s_putc(to, (int)(unsigned int)*from->ptr); in s_parse()
[all …]
/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))) macro