Searched refs:pbuf (Results 1 – 3 of 3) sorted by relevance
31 char **pbuf; /* point to the stream */ member57 *st->pbuf = st->string = p; in memstream_write()114 open_memstream(char **pbuf, size_t *psize) in open_memstream() argument119 if (pbuf == NULL || psize == NULL) { in open_memstream()142 st->pbuf = pbuf; in open_memstream()145 *pbuf = st->string; in open_memstream()
32 wchar_t **pbuf; /* point to the stream */ member59 *st->pbuf = st->string = p; in wmemstream_write()124 open_wmemstream(wchar_t **pbuf, size_t *psize) in open_wmemstream() argument129 if (pbuf == NULL || psize == NULL) { in open_wmemstream()152 st->pbuf = pbuf; in open_wmemstream()156 *pbuf = st->string; in open_wmemstream()
1168 static char pbuf[10]; in pchar() local1171 (void)snprintf(pbuf, sizeof pbuf, "%c", ch); in pchar()1173 (void)snprintf(pbuf, sizeof pbuf, "\\%o", ch); in pchar()1174 return(pbuf); in pchar()