Home
last modified time | relevance | path

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

12345678

/openbsd-src/lib/libc/gen/
H A Dfnmatch.c223 (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 Disctype.c124 #undef isupper
126 isupper(int c) in isupper() function
130 DEF_STRONG(isupper);
H A Dcharclass.h24 { "upper", isupper },
/openbsd-src/gnu/llvm/libcxx/include/
H A Dcctype29 int isupper(int c);
95 #ifdef isupper
96 #undef isupper
122 using ::isupper _LIBCPP_USING_IF_EXISTS;
H A Dctype.h54 #undef isupper
/openbsd-src/usr.bin/from/
H A Dfrom.c66 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 Dcd9660_strings.c55 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 Dstd_cctype.h61 #undef isupper
77 using ::isupper;
/openbsd-src/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cctype.h63 #undef isupper
79 using ::isupper;
/openbsd-src/games/monop/
H A Dgetinp.c83 if (isupper((unsigned char)*sp)) in getinp()
105 c = isupper((unsigned char)*tsp) ? in comp()
/openbsd-src/games/pig/
H A Dpig.c85 allupper = firstupper = isupper((unsigned char)buf[0]); in pigout()
87 allupper = allupper && isupper((unsigned char)buf[i]); in pigout()
/openbsd-src/include/
H A Dctype.h77 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 Dcaesar.c51 isupper(ch) ? ('A' + (ch - 'A' + perm) % 26) : \
105 else if (isupper(ch)) in main()
/openbsd-src/sys/lib/libsa/
H A Dstand.h116 #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 Dmakeinfo.h243 #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 Dplayit.c286 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 Dctype.h31 __only_inline int isupper(int _c);
82 PROTO_NORMAL(isupper);
/openbsd-src/regress/lib/libc/locale/check_isw/
H A Dcheck_isw.c65 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 Dstrfile.c186 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 Dcharclass.h24 { "upper", isupper },
/openbsd-src/usr.bin/lex/
H A Dccl.c307 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 Dctype.h44 using std::isupper;
/openbsd-src/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dctype.h44 using std::isupper;
/openbsd-src/gnu/usr.bin/texinfo/lib/
H A Dstrcasecmp.c35 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
/openbsd-src/usr.bin/vi/common/
H A Dcut.h69 L__name = isupper(nch) ? tolower(nch) : (nch); \

12345678