Symbol: toupper
bin/csh/char.h
69
#define Toupper(c) (((c) & QUOTE) ? 0 : toupper((unsigned char) (c)))
bin/dd/dd.c
183
casetab[cnt] = toupper(ctab[cnt]);
bin/dd/dd.c
191
casetab[cnt] = toupper(cnt);
bin/ksh/emacs.c
2110
*cp = toupper((unsigned char)*cp);
bin/ksh/emacs.c
2120
*cp = toupper((unsigned char)*cp);
bin/ksh/var.c
561
*q = toupper((unsigned char)*q);
bin/ksh/vi.c
1123
*p = toupper(c);
games/battlestar/cypher.c
483
toupper((unsigned char)v[0]), v + 1, adv);
games/battlestar/getcom.c
96
*buf2++ = toupper((unsigned char)*buf1++);
games/bcd/bcd.c
195
*p = toupper((unsigned char)*p);
games/boggle/boggle/mach.c
436
printw("%c", toupper(SEVENBIT(ch)));
games/boggle/boggle/mach.c
699
printw("%c ", toupper((unsigned char)ch));
games/bs/bs.c
264
name[0] = toupper((unsigned char)name[0]);
games/bs/bs.c
906
ch = toupper(ch);
games/cribbage/io.c
290
c = toupper(c);
games/cribbage/io.c
397
Msgbuf[0] = toupper((unsigned char)Msgbuf[0]);
games/cribbage/io.c
537
c = toupper(c);
games/gomoku/stoc.c
97
c = toupper(c);
games/hack/hack.u_init.c
174
pc = toupper((unsigned char)pc);
games/hack/hack.u_init.c
208
pc = toupper((unsigned char)pc);
games/hack/makedefs.c
302
*sp = (char)toupper((unsigned char)*sp);
games/hangman/getguess.c
93
uch = toupper(ch);
games/hunt/hunt/otto.c
385
command[comlen++] = toupper((unsigned char)cmd);
games/mille/misc.c
68
c = toupper(c);
games/mille/move.c
350
c = toupper((unsigned char)c);
games/phantasia/io.c
369
ch = toupper(ch);
games/pig/pig.c
113
buf[start] = toupper((unsigned char)buf[start]);
games/sail/dr_1.c
424
*tp = toupper((unsigned char)*tp);
include/ctype.h
301
return toupper(_c);
include/ctype.h
80
int toupper(int);
lib/libc/gen/readpassphrase.c
124
ch = (char)toupper((unsigned char)ch);
lib/libc/gen/toupper_.c
62
DEF_STRONG(toupper);
lib/libc/hidden/ctype.h
34
__only_inline int toupper(int _c);
lib/libc/hidden/ctype.h
89
PROTO_NORMAL(toupper);
lib/libc/locale/isctype_l.c
121
return toupper(c);
lib/libc/regex/regcomp.c
843
return ((uch)toupper(ch));
lib/libform/frm_req_name.c
168
buf[i] = (char)toupper(UChar(buf[i]));
lib/libform/fty_enum.c
259
while (toupper(*s++) == toupper(*buf))
lib/libmenu/m_driver.c
80
if (toupper(UChar(*string++)) != toupper(UChar(*part)))
lib/libmenu/m_req_name.c
122
buf[i] = (char)toupper(UChar(buf[i]));
lib/libskey/put.c
498
*word = toupper((unsigned char)*word);
libexec/ftpd/ftpcmd.y
1436
*p = (char)toupper((unsigned char)*p);
regress/lib/libc/locale/check_isw/check_isw.c
125
check_value(toupper(s[j]), buf[0], 'c');
regress/lib/libc/locale/check_isw/check_isw.c
68
check_value(toupper(i), towupper(i), 'd');
sbin/disklabel/disklabel.c
548
unit = toupper((unsigned char)unit);
sbin/iked/parse.y
1119
switch (toupper((unsigned char)unit)) {
sbin/newfs_msdos/newfs_msdos.c
850
c = *src ? toupper((unsigned char)*src++) : ' ';
sbin/pfctl/pfctl_osfp.c
897
switch ((opt = toupper((unsigned char)tcpopts[i++]))) {
sbin/unwind/libunbound/services/outside_network.c
2831
*d = (uint8_t)toupper((unsigned char)*d);
sys/arch/hppa/stand/mkboot/mkboot.c
337
lname[i] = toupper(*str);
sys/dev/isa/spkr.c
225
char c = toupper(*cp);
sys/dev/microcode/aic7xxx/aicasm.c
578
input = toupper(input);
sys/dev/microcode/cyclades/cyzfirm2h.c
85
*cp = toupper(*cp);
sys/kern/tty.c
655
c = toupper(c);
sys/lib/libsa/cd9660.c
100
if (toupper(*path) == *cp)
sys/lib/libsa/cd9660.c
77
if (toupper(*path) == *cp)
usr.bin/at/at.c
1059
queue = toupper((unsigned char)queue);
usr.bin/awk/run.c
2027
return toupper(wc & 0xFF);
usr.bin/awk/run.c
2043
return nawk_convert(s, toupper, towupper);
usr.bin/cdio/cdio.c
214
n = toupper((unsigned char)*s);
usr.bin/dig/lib/dns/ttl.c
119
toupper(region.base[region.length - 1]);
usr.bin/dig/lib/isc/hex.c
88
if ((s = strchr(hex, toupper(c))) == NULL)
usr.bin/finger/util.c
176
*bp = toupper((unsigned char)*bp);
usr.bin/grep/util.c
307
fg->pattern[i] = toupper(pattern[i]);
usr.bin/grep/util.c
425
fg->pattern[i] = toupper(fg->pattern[i]);
usr.bin/grep/util.c
634
|| (iflag && pattern[i] == toupper((unsigned char)data[i])))
usr.bin/indent/indent.c
1099
toupper((unsigned char)*t_ptr) : *t_ptr;
usr.bin/ipcrm/ipcrm.c
139
IPC_TO_STR(toupper(c)), target_id);
usr.bin/ipcrm/ipcrm.c
142
IPC_TO_STRING(toupper(c)));
usr.bin/less/command.c
346
c = toupper(c);
usr.bin/less/opttbl.c
462
(toupper((unsigned char)o->oletter) == c))
usr.bin/lex/ccl.c
307
return isupper(c) ? tolower(c) : (islower(c) ? toupper(c) : c);
usr.bin/mail/fio.c
155
if (*cp != c && *cp != toupper(c))
usr.bin/make/defines.h
104
#define TOUPPER(c) (toupper((unsigned char)(c)))
usr.bin/mandoc/mdoc_validate.c
1695
v[3] = toupper((unsigned char)v[3]);
usr.bin/mandoc/mdoc_validate.c
2873
*nch->string = (char)toupper((unsigned char)*nch->string);
usr.bin/mandoc/roff_escape.c
485
toupper((unsigned char)buf[iarg + 1]) == 'D' &&
usr.bin/mg/extend.c
426
key.k_chars[i] = CCHR(toupper((unsigned char)*++str));
usr.bin/mg/line.c
587
repl[n] = toupper((unsigned char)repl[n]);
usr.bin/mg/line.c
589
repl[0] = toupper((unsigned char)repl[0]);
usr.bin/nm/elf.c
391
np->nl.n_other = toupper((unsigned char)np->nl.n_other);
usr.bin/openssl/ca.c
2431
row[DB_serial][i] = toupper((unsigned char) row[DB_serial][i]);
usr.bin/patch/util.c
132
*s = toupper((unsigned char)*s);
usr.bin/pkgconf/cli/main.c
521
*p = toupper((unsigned char) *p);
usr.bin/pkgconf/cli/main.c
568
*p = toupper((unsigned char) *p);
usr.bin/rpcgen/rpc_cout.c
746
*ptr++ = toupper((unsigned char)*str++);
usr.bin/rpcgen/rpc_main.c
451
*tmp = toupper((unsigned char)*tmp);
usr.bin/snmp/snmpc.c
1337
hexstr[0] = toupper(hexstr[0]);
usr.bin/snmp/snmpc.c
1338
hexstr[1] = toupper(hexstr[1]);
usr.bin/sort/bwstring.c
1042
*s = toupper(*s);
usr.bin/sort/bwstring.c
74
m[j] = toupper(m[j]);
usr.bin/systat/uvm.c
241
uppername[i] = toupper(name[i]);
usr.bin/telnet/telnet.c
543
*cp = toupper((unsigned char)c);
usr.bin/telnet/utilities.c
62
*argument++ = toupper((unsigned char)c);
usr.bin/tmux/cmd-if-shell.c
159
*error = toupper((u_char)*error);
usr.bin/tmux/cmd-queue.c
895
*msg = toupper((u_char) *msg);
usr.bin/tmux/cmd-run-shell.c
209
*error = toupper((u_char)*error);
usr.bin/tmux/mode-tree.c
1467
*error = toupper((u_char)*error);
usr.bin/tmux/window-customize.c
1023
*cause = toupper((u_char)*cause);
usr.bin/tmux/window-customize.c
1226
*error = toupper((u_char)*error);
usr.bin/vi/ex/ex.c
478
p[0] = toupper(p[0]);
usr.bin/vi/ex/ex_subst.c
1257
__ch = toupper(__ch); \
usr.bin/vi/ex/ex_usage.c
75
ap->bp[0] = toupper(ap->bp[0]);
usr.bin/vi/vi/v_ulcase.c
156
*p = toupper(ch);
usr.bin/x99token/x99token.c
116
buf[i] = toupper((unsigned char)buf[i]);
usr.sbin/config/mkheaders.c
204
toupper((unsigned char)c) : c;
usr.sbin/config/mkmakefile.c
371
char uppersuffix = toupper((unsigned char)suffix);
usr.sbin/httpd/server_fcgi.c
778
*p = toupper((unsigned char)*p);
usr.sbin/makefs/cd9660.c
1516
*newname++ = toupper((unsigned char)*oldname);
usr.sbin/makefs/cd9660.c
1575
*newname++ = toupper((unsigned char)*oldname);
usr.sbin/makefs/msdos/mkfs_msdos.c
881
c = *src ? toupper((unsigned char)*src++) : ' ';
usr.sbin/nsd/dname.h
21
#define DNAME_NORMALIZE toupper
usr.sbin/pppd/options.c
859
digit = toupper(c) - '0';
usr.sbin/smtpd/enqueue.c
548
msg.fromname[apos] = toupper((unsigned char)msg.fromname[apos]);
usr.sbin/smtpd/util.c
660
*buf = toupper((unsigned char)*buf);
usr.sbin/tcpdump/pfctl_osfp.c
894
switch ((opt = toupper(tcpopts[i++]))) {
usr.sbin/unbound/services/outside_network.c
2831
*d = (uint8_t)toupper((unsigned char)*d);
usr.sbin/unbound/testcode/unitzonemd.c
111
digestdup[i] = toupper((unsigned char)digestdup[i]);
usr.sbin/ypserv/mkalias/mkalias.c
124
*c = (char)toupper(*c);