Searched refs:islower_l (Results 1 – 7 of 7) sorted by relevance
/picolibc-latest/newlib/libc/ctype/ |
D | toupper_l.c | 23 return islower_l (c, locale) ? c - 'a' + 'A' : c; in toupper_l() 25 && islower_l (c, locale)) in toupper_l() 40 return islower_l (c, locale) ? c - 'a' + 'A' : c; in toupper_l()
|
D | islower_l.c | 8 #undef islower_l 10 islower_l (int c, struct __locale_t *locale) in islower_l() function
|
D | CMakeLists.txt | 53 islower_l.c
|
D | meson.build | 53 'islower_l.c',
|
D | ctype.tex | 44 * Function islower:: Lowercase character predicate (islower, islower_l)
|
/picolibc-latest/newlib/libc/include/ |
D | ctype.h | 103 int islower_l (int c, locale_t l); 210 __declare_extern_inline(int) islower_l (int c, locale_t l) { (void) l; return islower(c); } in islower_l() function 293 #define islower_l(__c,__l) ((__ctype_lookup_l(__c,__l)&(_U|_L))==_L) macro
|
/picolibc-latest/ |
D | COPYING.picolibc | 2936 newlib/libc/ctype/islower_l.c
|