Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/ctype/
Dtolower.c96 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()
Disupper.c69 #undef isupper
71 isupper (int c) in isupper() function
Diswupper.c75 return c < (wint_t)0x100 ? isupper (c) : 0; in iswupper()
Disalpha.c76 return isupper(c) || islower(c); in isalpha()
Disupper_l.c14 return isupper(c); in isupper_l()
Diswupper_l.c23 return c < 0x100 ? isupper (c) : 0; in iswupper_l()
Dctype.tex48 * Function isupper:: Uppercase character predicate (isupper, isupper_l)
104 @include ctype/isupper.def
DCMakeLists.txt60 isupper.c
Dmeson.build60 'isupper.c',
/picolibc-latest/newlib/libc/include/
Dctype.h78 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/
Dtest_is.c1940 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/
Dregcomp.c903 if (isupper((uch)c)) in p_b_cclass()
989 if (isupper(ch)) in othercase()
/picolibc-latest/newlib/
DChangeLog-20155673 (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/
DCOPYING.picolibc1412 newlib/libc/ctype/isupper.c