Searched refs:isupper (Results 1 – 14 of 14) sorted by relevance
/picolibc-latest/newlib/libc/ctype/ |
D | tolower.c | 96 return isupper (c) ? c - 'A' + 'a' : c; in tolower() 97 else if (c != EOF && MB_CUR_MAX == 1 && isupper (c)) in tolower() 107 return isupper(c) ? (c) - 'A' + 'a' : c; in tolower()
|
D | isupper.c | 69 #undef isupper 71 isupper (int c) in isupper() function
|
D | iswupper.c | 75 return c < (wint_t)0x100 ? isupper (c) : 0; in iswupper()
|
D | isalpha.c | 76 return isupper(c) || islower(c); in isalpha()
|
D | isupper_l.c | 14 return isupper(c); in isupper_l()
|
D | iswupper_l.c | 23 return c < 0x100 ? isupper (c) : 0; in iswupper_l()
|
D | ctype.tex | 48 * Function isupper:: Uppercase character predicate (isupper, isupper_l) 104 @include ctype/isupper.def
|
D | CMakeLists.txt | 60 isupper.c
|
D | meson.build | 60 'isupper.c',
|
/picolibc-latest/newlib/libc/include/ |
D | ctype.h | 78 int isupper (int c); 167 __declare_extern_inline(int) isupper (int c) in isupper() function 181 return isupper(c) || islower(c); in isalpha() 191 if (isupper(c)) in tolower() 214 __declare_extern_inline(int) isupper_l (int c, locale_t l) { (void) l; return isupper(c); } in isupper_l() 256 #define isupper(__c) ((__ctype_lookup(__c)&(_U|_L))==_U) macro 321 isupper (__x) ? (int) __x - 'A' + 'a' : (int) __x;})
|
/picolibc-latest/newlib/libm/test/ |
D | test_is.c | 1940 static int def_isupper (int i) { return isupper(i); } in def_isupper() 1999 #undef isupper 2033 test_is_set(isupper, "isupper function", &myupper); in test_is()
|
/picolibc-latest/newlib/libc/posix/ |
D | regcomp.c | 903 if (isupper((uch)c)) in p_b_cclass() 989 if (isupper(ch)) in othercase()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 5673 (isalpha, isupper, islower, isdigit, isxdigit, isspace, ispunct) 6296 * libc/include/ctype.h (_tolower, _toupper, isalpha, isupper) 6302 * libc/include/ctype.h (isalpha, isupper, islower, isdigit) 6569 * libc/ctype/isupper.c (isupper): Ditto, but check for _U flag. 6571 (isupper): Ditto. 8269 * libc/ctype/isupper.c: Ditto. 12327 * libc/ctype/isupper.c: Likewise. 27648 * libc/ctype/isupper.c: revise doc; 27649 libc/ctype/ctype.tex: use doc from isupper.c 27709 isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
|
/picolibc-latest/ |
D | COPYING.picolibc | 1412 newlib/libc/ctype/isupper.c
|