Searched defs:__c (Results 1 – 4 of 4) sorted by relevance
/picolibc-latest/newlib/libc/include/ |
D | ctype.h | 90 #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/ |
D | local.h | 293 #define __swputc_raw(__c, __p) \ argument 302 #define __swputc(__c, __p) \ argument 307 #define __swputc(__c, __p) __swputc_raw(__c, __p) argument
|
D | stdio.h | 677 int __c = _sgetc_raw( __p); in _sgetc() local 707 #define _sputc_raw( __c, __p) \ argument 716 #define _sputc( __c, __p) \ argument 721 #define _sputc( __c, __p) _sputc_raw( __c, __p) argument
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | stdio.h | 221 #define putc(__c, __stream) fputc(__c, __stream) argument 222 #define putchar(__c) fputc(__c, stdout) argument
|