Home
last modified time | relevance | path

Searched refs:islower (Results 1 – 14 of 14) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/ctype/
Dtoupper.c96 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()
Dislower.c71 #undef islower
73 islower (int c) in islower() function
Diswlower.c75 return c < (wint_t)0x100 ? islower (c) : 0; in iswlower()
Disalpha.c76 return isupper(c) || islower(c); in isalpha()
Dislower_l.c15 return islower(c); in islower_l()
Diswlower_l.c23 return c < 0x100 ? islower (c) : 0; in iswlower_l()
Dctype.tex44 * islower:: Lowercase character predicate (islower, islower_l)
92 @include ctype/islower.def
DCMakeLists.txt52 islower.c
Dmeson.build52 'islower.c',
/picolibc-3.7.0-3.6.0/newlib/libc/include/
Dctype.h76 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/
Dtest_is.c1941 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/
Dregcomp.c887 if (islower((uch)c)) in p_b_cclass()
995 else if (islower(ch)) in othercase()
/picolibc-3.7.0-3.6.0/newlib/
DChangeLog-20152886 * 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/
DCOPYING.picolibc1357 newlib/libc/ctype/islower.c