Searched refs:_c (Results 1 – 2 of 2) sorted by relevance
128 static __inline int __sputc(int _c, FILE* _p) { in __sputc() argument129 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()
94 #define INCCL(_c) \ argument95 (cclcompl ? (wmemchr(ccls, (_c), ccle - ccls) == NULL) : \96 (wmemchr(ccls, (_c), ccle - ccls) != NULL))