| /openbsd-src/lib/libc/gen/ |
| H A D | fnmatch.c | 223 (isupper((unsigned char)**string) || in fnmatch_ch() 224 isupper((unsigned char)*startch) || in fnmatch_ch() 225 isupper((unsigned char)**pattern)) && in fnmatch_ch() 239 else if (nocase && (isupper((unsigned char)**string) || in fnmatch_ch() 240 isupper((unsigned char)**pattern)) && in fnmatch_ch() 266 else if (nocase && (isupper((unsigned char)**string) || in fnmatch_ch() 267 isupper((unsigned char)**pattern)) && in fnmatch_ch()
|
| H A D | isctype.c | 124 #undef isupper 126 isupper(int c) in isupper() function 130 DEF_STRONG(isupper);
|
| H A D | charclass.h | 24 { "upper", isupper },
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | cctype | 29 int isupper(int c); 95 #ifdef isupper 96 #undef isupper 122 using ::isupper _LIBCPP_USING_IF_EXISTS;
|
| H A D | ctype.h | 54 #undef isupper
|
| /openbsd-src/usr.bin/from/ |
| H A D | from.c | 66 if (isupper((unsigned char)*p)) in main() 154 if (isupper((unsigned char)ch)) in match() 161 if (isupper((unsigned char)(ch = *t++))) in match()
|
| /openbsd-src/usr.sbin/makefs/cd9660/ |
| H A D | cd9660_strings.c | 55 return (isupper((unsigned char)c) in cd9660_is_d_char() 63 return (isupper((unsigned char)c) in cd9660_is_a_char()
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/c_std/ |
| H A D | std_cctype.h | 61 #undef isupper 77 using ::isupper;
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/c_std/ |
| H A D | std_cctype.h | 63 #undef isupper 79 using ::isupper;
|
| /openbsd-src/games/monop/ |
| H A D | getinp.c | 83 if (isupper((unsigned char)*sp)) in getinp() 105 c = isupper((unsigned char)*tsp) ? in comp()
|
| /openbsd-src/games/pig/ |
| H A D | pig.c | 85 allupper = firstupper = isupper((unsigned char)buf[0]); in pigout() 87 allupper = allupper && isupper((unsigned char)buf[i]); in pigout()
|
| /openbsd-src/include/ |
| H A D | ctype.h | 77 int isupper(int); 164 __only_inline int isupper(int _c) in isupper() function 283 return isupper(_c); in isupper_l()
|
| /openbsd-src/games/caesar/ |
| H A D | caesar.c | 51 isupper(ch) ? ('A' + (ch - 'A' + perm) % 26) : \ 105 else if (isupper(ch)) in main()
|
| /openbsd-src/sys/lib/libsa/ |
| H A D | stand.h | 116 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro 118 #define isalpha(c) (isupper(c)||islower(c)) 119 #define tolower(c) (isupper(c)?((c) - 'A' + 'a'):(c))
|
| /openbsd-src/gnu/usr.bin/texinfo/makeinfo/ |
| H A D | makeinfo.h | 243 #define coerce_to_lower(c) ((isupper(c) ? tolower(c) : (c))) 260 #ifndef isupper 261 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
|
| /openbsd-src/games/hunt/hunt/ |
| H A D | playit.c | 286 if (isupper(ch = getchar())) in quit() 298 if (isupper(ch = getchar())) in quit() 368 if (isupper(ch = getchar())) in quit()
|
| /openbsd-src/lib/libc/hidden/ |
| H A D | ctype.h | 31 __only_inline int isupper(int _c); 82 PROTO_NORMAL(isupper);
|
| /openbsd-src/regress/lib/libc/locale/check_isw/ |
| H A D | check_isw.c | 65 check_bool(isupper(i), iswupper(i), 'a'); in test1() 115 check_bool(isupper(s[j]), iswupper(c), 'a'); in test2()
|
| /openbsd-src/games/fortune/strfile/ |
| H A D | strfile.c | 186 if (Iflag && isupper((unsigned char)*nsp)) in main() 403 if (isupper(c1)) in cmp_str() 405 if (isupper(c2)) in cmp_str()
|
| /openbsd-src/usr.bin/rsync/ |
| H A D | charclass.h | 24 { "upper", isupper },
|
| /openbsd-src/usr.bin/lex/ |
| H A D | ccl.c | 307 return isupper(c) ? tolower(c) : (islower(c) ? toupper(c) : c); 314 return (isupper(c) || islower(c)) ? true : false;
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/c_compatibility/ |
| H A D | ctype.h | 44 using std::isupper;
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/c_compatibility/ |
| H A D | ctype.h | 44 using std::isupper;
|
| /openbsd-src/gnu/usr.bin/texinfo/lib/ |
| H A D | strcasecmp.c | 35 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
|
| /openbsd-src/usr.bin/vi/common/ |
| H A D | cut.h | 69 L__name = isupper(nch) ? tolower(nch) : (nch); \
|