Home
last modified time | relevance | path

Searched refs:__c (Results 1 – 4 of 4) sorted by relevance

/picolibc-latest/newlib/libc/include/
Dctype.h90 #define _tolower(__c) ((__c) + ('a' - 'A')) argument
91 #define _toupper(__c) ((__c) - ('a' - 'A')) argument
92 #define isascii(__c) ((unsigned)(__c)<=0177) argument
93 #define toascii(__c) ((__c)&0177) argument
116 #define isascii_l(__c,__l) ((__l),(unsigned)(__c)<=0177) argument
117 #define toascii_l(__c,__l) ((__l),(__c)&0177) argument
255 #define isalpha(__c) (__ctype_lookup(__c)&(_U|_L)) argument
256 #define isupper(__c) ((__ctype_lookup(__c)&(_U|_L))==_U) argument
257 #define islower(__c) ((__ctype_lookup(__c)&(_U|_L))==_L) argument
258 #define isdigit(__c) (__ctype_lookup(__c)&_N) argument
[all …]
/picolibc-latest/newlib/libc/stdio/
Dstdio.h595 int (*__readfn)(void *__c, char *__buf,
597 int (*__writefn)(void *__c, const char *__buf,
599 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
600 int (*__closefn)(void *__c));
602 int (*__readfn)(void *__c, char *__buf,
604 int (*__writefn)(void *__c, const char *__buf,
606 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
607 int (*__closefn)(void *__c));
677 int __c = _sgetc_raw( __p); in _sgetc() local
678 if ((__p->_flags & __SCLE) && (__c == '\r')) in _sgetc()
[all …]
Dlocal.h293 #define __swputc_raw(__c, __p) \ argument
296 (*(__p)->_p = (__c)), *(__p)->_p != '\n' ? \
299 __swbufw((int)(__c), __p) : \
300 (*(__p)->_p = (__c), (int)*(__p)->_p++))
302 #define __swputc(__c, __p) \ argument
303 ((((__p)->_flags & __SCLE) && ((__c) == '\n')) \
305 __swputc_raw((__c), (__p)))
307 #define __swputc(__c, __p) __swputc_raw(__c, __p) argument
/picolibc-latest/newlib/libc/tinystdio/
Dstdio.h218 int fputc(int __c, FILE *__stream);
219 int putc(int __c, FILE *__stream);
220 int putchar(int __c);
221 #define putc(__c, __stream) fputc(__c, __stream) argument
222 #define putchar(__c) fputc(__c, stdout) argument
245 int ungetc(int __c, FILE *__stream);