Searched refs:islower (Results 1 – 14 of 14) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/ctype/ |
D | toupper.c | 96 return islower (c) ? c - 'a' + 'A' : c; in toupper() 97 else if (c != EOF && MB_CUR_MAX == 1 && islower (c)) in toupper() 107 return islower (c) ? c - 'a' + 'A' : c; in toupper()
|
D | islower.c | 71 #undef islower 73 islower (int c) in islower() function
|
D | iswlower.c | 75 return c < (wint_t)0x100 ? islower (c) : 0; in iswlower()
|
D | isalpha.c | 76 return isupper(c) || islower(c); in isalpha()
|
D | islower_l.c | 15 return islower(c); in islower_l()
|
D | iswlower_l.c | 23 return c < 0x100 ? islower (c) : 0; in iswlower_l()
|
D | ctype.tex | 44 * islower:: Lowercase character predicate (islower, islower_l) 92 @include ctype/islower.def
|
D | CMakeLists.txt | 52 islower.c
|
D | meson.build | 52 'islower.c',
|
/picolibc-3.7.0-3.6.0/newlib/libc/include/ |
D | ctype.h | 76 int islower (int c); 146 __declare_extern_inline(int) islower (int c) in islower() function 183 return isupper(c) || islower(c); in isalpha() 200 if (islower(c)) in toupper() 212 __declare_extern_inline(int) islower_l (int c, locale_t l) { (void) l; return islower(c); } in islower_l() 259 #define islower(__c) ((__ctype_lookup(__c)&(_U|_L))==_L) macro 312 islower (__x) ? (int) __x - 'a' + 'A' : (int) __x;})
|
/picolibc-3.7.0-3.6.0/newlib/libm/test/ |
D | test_is.c | 1941 int def_islower (int i) { return islower(i); } in def_islower() 1999 #undef islower 2028 test_is_set(islower, "islower function", &mylower); in test_is()
|
/picolibc-3.7.0-3.6.0/newlib/libc/posix/ |
D | regcomp.c | 887 if (islower((uch)c)) in p_b_cclass() 995 else if (islower(ch)) in othercase()
|
/picolibc-3.7.0-3.6.0/newlib/ |
D | ChangeLog-2015 | 2886 * libc/ctype/islower.c: Ditto. 5673 (isalpha, isupper, islower, isdigit, isxdigit, isspace, ispunct) 6297 (islower, isdigit, isxdigit, isspace, ispunct, isalnum) 6302 * libc/include/ctype.h (isalpha, isupper, islower, isdigit) 6567 * libc/ctype/islower.c (islower): Check explicitely for _L flag only 6570 * libc/include/ctype.h (islower): Same in macro. 8265 * libc/ctype/islower.c: Ditto. 12326 * libc/ctype/islower.c: Likewise. 27709 isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
|
/picolibc-3.7.0-3.6.0/ |
D | COPYING.picolibc | 1357 newlib/libc/ctype/islower.c
|