Searched refs:isupper_l (Results 1 – 7 of 7) sorted by relevance
/picolibc-latest/newlib/libc/ctype/ |
D | tolower_l.c | 21 return isupper_l (c, locale) ? c - 'A' + 'a' : c; in tolower_l() 23 && isupper_l (c, locale)) in tolower_l() 38 return isupper_l (c, locale) ? (c) - 'A' + 'a' : c; in tolower_l()
|
D | isupper_l.c | 8 #undef isupper_l 10 isupper_l (int c, struct __locale_t *locale) in isupper_l() function
|
D | CMakeLists.txt | 61 isupper_l.c
|
D | meson.build | 61 'isupper_l.c',
|
D | ctype.tex | 48 * Function isupper:: Uppercase character predicate (isupper, isupper_l)
|
/picolibc-latest/newlib/libc/include/ |
D | ctype.h | 107 int isupper_l (int c, locale_t l); 214 __declare_extern_inline(int) isupper_l (int c, locale_t l) { (void) l; return isupper(c); } in isupper_l() function 292 #define isupper_l(__c,__l) ((__ctype_lookup_l(__c,__l)&(_U|_L))==_U) macro
|
/picolibc-latest/ |
D | COPYING.picolibc | 2940 newlib/libc/ctype/isupper_l.c
|