Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dlocal.h128 static __inline int __sputc(int _c, FILE* _p) { in __sputc() argument
129 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) { in __sputc()
130 return (*_p->_p++ = _c); in __sputc()
132 return (__swbuf(_c, _p)); in __sputc()
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dvfwscanf.c94 #define INCCL(_c) \ argument
95 (cclcompl ? (wmemchr(ccls, (_c), ccle - ccls) == NULL) : \
96 (wmemchr(ccls, (_c), ccle - ccls) != NULL))