Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libc/include/
Dctype.h97 #define _tolower(__c) ((__c) + ('a' - 'A')) argument
98 #define _toupper(__c) ((__c) - ('a' - 'A')) argument
99 #define isascii(__c) ((unsigned)(__c)<=0177) argument
100 #define toascii(__c) ((__c)&0177) argument
123 #define isascii_l(__c,__l) ((__l),(unsigned)(__c)<=0177) argument
124 #define toascii_l(__c,__l) ((__l),(__c)&0177) argument
257 #define isalpha(__c) (__ctype_lookup(__c)&(_U|_L)) argument
258 #define isupper(__c) ((__ctype_lookup(__c)&(_U|_L))==_U) argument
259 #define islower(__c) ((__ctype_lookup(__c)&(_U|_L))==_L) argument
260 #define isdigit(__c) (__ctype_lookup(__c)&_N) argument
[all …]
/picolibc-3.7.0-3.6.0/newlib/libc/stdio/
Dstdio.h598 int (*__readfn)(void *__c, char *__buf,
600 int (*__writefn)(void *__c, const char *__buf,
602 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
603 int (*__closefn)(void *__c));
605 int (*__readfn)(void *__c, char *__buf,
607 int (*__writefn)(void *__c, const char *__buf,
609 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
610 int (*__closefn)(void *__c));
680 int __c = _sgetc_raw( __p); in _sgetc() local
681 if ((__p->_flags & __SCLE) && (__c == '\r')) in _sgetc()
[all …]
Dlocal.h282 #define __swputc_raw(__c, __p) \ argument
285 (*(__p)->_p = (__c)), *(__p)->_p != '\n' ? \
288 __swbufw((int)(__c), __p) : \
289 (*(__p)->_p = (__c), (int)*(__p)->_p++))
291 #define __swputc(__c, __p) \ argument
292 ((((__p)->_flags & __SCLE) && ((__c) == '\n')) \
294 __swputc_raw((__c), (__p)))
296 #define __swputc(__c, __p) __swputc_raw(__c, __p) argument
/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/
Dstdio.h220 int fputc(int __c, FILE *__stream);
221 int putc(int __c, FILE *__stream);
222 int putchar(int __c);
223 #define putc(__c, __stream) fputc(__c, __stream) argument
224 #define putchar(__c) fputc(__c, stdout) argument
247 int ungetc(int __c, FILE *__stream);