HomeSort by: relevance | last modified time | path
    Searched refs:isupper (Results 1 - 25 of 90) sorted by relevancy

1 2 3 4

  /src/lib/libc/citrus/
citrus_bcs_strtol.c 58 #undef isupper
59 #define isupper(c) _bcs_isupper(c) macro
citrus_bcs_strtoul.c 63 #undef isupper
64 #define isupper(c) _bcs_isupper(c) macro
citrus_bcs.h 53 _CITRUS_BCS_PRED(isupper, c >= 'A' && c <= 'Z')
  /src/usr.sbin/makefs/cd9660/
cd9660_strings.c 67 return (isupper((unsigned char)c)
75 return (isupper((unsigned char)c)
  /src/tests/usr.bin/xlint/lint1/
msg_342.c 27 int isupper(int);
60 /* expect+1: warning: argument to 'isupper' must be 'unsigned char' or EOF, not 'char' [341] */
61 isupper(c);
  /src/games/hangman/
getguess.c 61 if (isupper(ch))
  /src/lib/libc/regex/
utils.h 52 #define iswupper(a) isupper(a)
  /src/lib/libtelnet/
genget.c 45 #define LOWER(x) (isupper((unsigned char)x) ? tolower((unsigned char)x) : (x))
  /src/games/pig/
pig.c 98 allupper = firstupper = isupper((unsigned char)buf[0]);
100 allupper = allupper && isupper((unsigned char)buf[i]);
  /src/usr.bin/spell/spellprog/
look.c 64 if (isupper(*s))
176 else if (isupper(*s2))
  /src/games/battlestar/
getcom.c 91 if (isupper((unsigned char)*buf1)) {
  /src/include/
ctype.h 55 int isupper(int);
  /src/sys/arch/ia64/stand/common/
strtol.c 118 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
  /src/sys/sys/
ctype_inline.h 57 #define isupper(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_U)) macro
  /src/tests/usr.bin/cc/
t_ctype_abuse.sh 89 isupper \
  /src/lib/libc/net/
nslexer.l 84 if (isupper((unsigned char)p[i]))
  /src/usr.bin/hexdump/
odsyntax.c 235 if (isupper((unsigned char)*type_string)) {
262 if (isupper((unsigned char)*type_string)) {
  /src/sys/arch/rs6000/stand/boot/
devopen.c 72 if (isupper(*s)) *s = tolower(*s);
  /src/sys/external/bsd/ipf/netinet/
ip_proxy.h 143 # ifndef isupper
144 # define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z')) macro
150 # define isalpha(x) (isupper(x) || islower(x))
153 # define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
  /src/tests/lib/libc/gen/
h_ctype_abuse.c 54 M(ISUPPER, isupper) \
t_ctype.c 79 static int isupper_wrapper(int ch) { return isupper(ch); }
191 test_use("isupper", ctypefn);
1031 DEF_TEST_ABUSE(isupper)
1046 DEF_TEST_ABUSE_OVERRIDE(isupper)
1061 DEF_TEST_USE(isupper)
1098 ATF_CHECK(!isupper(ydots));
1133 ATF_CHECK(isupper(Hard));
1168 ATF_CHECK(!isupper(ya));
1187 ADD_TEST_ABUSE(tp, isupper);
1202 ADD_TEST_ABUSE_OVERRIDE(tp, isupper);
    [all...]
  /src/games/hunt/hunt/
playit.c 300 if (isupper(ch = getchar()))
315 if (isupper(ch = getchar()))
388 if (isupper(ch = getchar()))
  /src/games/fortune/strfile/
strfile.c 209 if (Iflag && isupper((unsigned char)*nsp))
409 if (isupper(c1))
411 if (isupper(c2))
  /src/bin/csh/
char.h 79 #define Isupper(c) (((c) & QUOTE) ? 0 : isupper((unsigned char) (c)))
91 #define Isupper(c) (cmap(c, _UP) && !(((c) & META) && AsciiOnly))
  /src/lib/libc/nameser/
ns_ttl.c 97 if (isascii(ch) && isupper(ch))

Completed in 21 milliseconds

1 2 3 4