Symbol: islower
bin/csh/char.h
66
#define Islower(c) (((c) & QUOTE) ? 0 : islower((unsigned char) (c)))
bin/ed/main.c
1245
if (!islower(n)) {
bin/ed/main.c
1259
if (!islower(n)) {
bin/ksh/emacs.c
2109
if (islower((unsigned char)*cp))
bin/ksh/emacs.c
2119
if (islower((unsigned char)*cp))
bin/ksh/var.c
470
else if (islower(c))
bin/ksh/var.c
560
if (islower((unsigned char)*q))
bin/ksh/vi.c
1121
if (islower(c)) {
games/battlestar/getcom.c
95
if (islower((unsigned char)*buf1)) {
games/boggle/boggle/bog.c
146
if (!islower((unsigned char)*p))
games/boggle/boggle/mach.c
263
if (!islower(ch))
games/boggle/boggle/mach.c
572
if (islower(ch)) {
games/boggle/mkdict/mkdict.c
87
if (!islower((unsigned char)*p))
games/bs/bs.c
905
if (islower(ch))
games/caesar/caesar.c
103
if (islower(ch))
games/caesar/caesar.c
52
islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch
games/cribbage/io.c
289
if (islower(c))
games/cribbage/io.c
396
if (islower((unsigned char)Msgbuf[0]) && Msgbuf[1] != ')')
games/cribbage/io.c
536
if (islower(c))
games/fortune/fortune/fortune.c
194
else if (islower(ch))
games/gomoku/stoc.c
96
if (islower(c))
games/hack/hack.u_init.c
173
if (islower((unsigned char)pc))
games/hack/hack.u_init.c
207
if(islower((unsigned char)pc))
games/hangman/getword.c
74
if (!islower((unsigned char)*wp))
games/mille/misc.c
67
if (islower(c))
games/mille/move.c
349
if (islower((unsigned char)c))
games/phantasia/io.c
367
if (islower(ch))
games/sail/dr_1.c
423
if (islower((unsigned char)*tp))
include/ctype.h
259
return islower(_c);
include/ctype.h
73
int islower(int);
lib/libc/gen/charclass.h
20
{ "lower", islower },
lib/libc/gen/isctype.c
97
DEF_STRONG(islower);
lib/libc/hidden/ctype.h
27
__only_inline int islower(int _c);
lib/libc/hidden/ctype.h
74
PROTO_NORMAL(islower);
lib/libc/locale/isctype_l.c
72
return islower(c);
lib/libc/net/inet_addr.c
115
(c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
lib/libc/net/inet_network.c
62
val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
lib/libc/regex/regcomp.c
842
else if (islower(ch))
lib/libcurses/tinfo/comp_scan.c
555
if (islower(UChar(*s))) {
lib/libpcap/etherent.c
47
else if (islower(c))
lib/libpcap/nametoaddr.c
262
else if (islower(c))
lib/libskey/put.c
497
if (islower((unsigned char)*word))
libexec/getty/main.c
410
if (islower(c))
regress/lib/libc/locale/check_isw/check_isw.c
111
check_bool(islower(s[j]), iswlower(c), '6');
regress/lib/libc/locale/check_isw/check_isw.c
61
check_bool(islower(i), iswlower(i), '6');
sys/arch/alpha/stand/nboot/machdep.c
99
if (islower(*s)) {
sys/arch/hppa/stand/mkboot/mkboot.c
336
if (islower(*str))
sys/kern/tty.c
654
if (ISSET(tp->t_oflag, OLCUC) && islower(c))
sys/lib/libsa/stand.h
118
#define isalpha(c) (isupper(c)||islower(c))
sys/lib/libsa/stand.h
120
#define toupper(c) (islower(c)?((c) - 'a' + 'A'):(c))
sys/net/pf_if.c
64
#define isalpha(c) (isupper(c)||islower(c))
usr.bin/at/at.c
938
if (!(islower((unsigned char)queue) ||
usr.bin/awk/b.c
1134
{ "lower", 5, islower },
usr.bin/cvs/rcsparse.c
1068
if (islower(*pdp->rp_buf)) {
usr.bin/file/magic-test.c
128
if (cflag && islower((u_char)b) && tolower((u_char)a) == (u_char)b)
usr.bin/ftp/cmds.c
278
while (*tp && !islower((unsigned char)*tp)) {
usr.bin/ftp/small.c
240
while (*tp && !islower((unsigned char)*tp)) {
usr.bin/indent/indent.c
1098
islower((unsigned char)*t_ptr) ?
usr.bin/less/command.c
333
opt_lower = islower(p[0]);
usr.bin/less/command.c
345
if (!opt_lower && islower(c))
usr.bin/less/command.c
403
toggle_option(curropt, islower(c), "", optflag);
usr.bin/less/main.c
348
if (len == 0 && islower(c))
usr.bin/less/option.c
215
lc = islower(optc);
usr.bin/less/option.c
223
lc = islower(optname[0]);
usr.bin/less/opttbl.c
474
if (isupper(c) || islower(c) || c == '-')
usr.bin/lex/ccl.c
307
return isupper(c) ? tolower(c) : (islower(c) ? toupper(c) : c);
usr.bin/lex/ccl.c
314
return (isupper(c) || islower(c)) ? true : false;
usr.bin/lex/flexdef.h
1106
#define b_islower(c) (islower(c)?true:false)
usr.bin/lex/misc.c
171
if (!isascii((u_char) * str) || !islower((u_char) * str))
usr.bin/lex/parse.y
889
CCL_EXPR(islower);
usr.bin/lex/parse.y
900
CCL_EXPR(islower);
usr.bin/lex/parse.y
917
CCL_NEG_EXPR(islower);
usr.bin/mail/head.c
197
if (!islower((unsigned char)*cp++))
usr.bin/make/defines.h
99
#define ISLOWER(c) (islower((unsigned char)(c)))
usr.bin/mandoc/mdoc_validate.c
2771
if (islower((unsigned char)*p)) {
usr.bin/openssl/apps.c
2158
if (!islower((unsigned char)*name->name))
usr.bin/patch/util.c
129
for (s = simplename; *s && !islower((unsigned char)*s); s++)
usr.bin/rcs/rcsparse.c
1067
if (islower(*pdp->rp_buf)) {
usr.bin/rpcgen/rpc_main.c
450
if (islower((unsigned char)*tmp))
usr.bin/rsync/charclass.h
20
{ "lower", islower },
usr.bin/spell/spellprog.c
324
if (islower((unsigned char)*cp))
usr.bin/tr/str.c
156
{ "lower", islower, },
usr.bin/vi/ex/ex_subst.c
1256
if (islower(__ch)) \
usr.bin/vi/vi/v_ulcase.c
155
if (islower(ch)) {
usr.bin/x99token/x99token.c
115
if (islower((unsigned char)buf[i]))
usr.sbin/config/mkheaders.c
203
*dst++ = islower((unsigned char)c) ?
usr.sbin/httpd/patterns.c
142
res = islower(c);
usr.sbin/httpd/patterns.c
162
return (islower(cl) ? res : !res);
usr.sbin/makefs/cd9660.c
1515
if (islower((unsigned char)*oldname))
usr.sbin/makefs/cd9660.c
1574
if (islower((unsigned char)*oldname))
usr.sbin/makefs/cd9660/cd9660_strings.c
107
if (islower((unsigned char)*c) )
usr.sbin/makefs/cd9660/cd9660_strings.c
47
if (islower((unsigned char)str[p]) )
usr.sbin/makefs/cd9660/cd9660_strings.c
83
if (islower((unsigned char)*c) )
usr.sbin/nsd/rdata.c
3640
if (isdigit((unsigned char)ch) || islower((unsigned char)ch))
usr.sbin/relayd/util.c
309
else if (islower(ch))
usr.sbin/rpki-client/encoding.c
265
else if (islower(ch))
usr.sbin/snmpd/mib.y
1223
if (islower(buf[0])) {