bin/cat/cat.c
152
for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) {
bin/chio/parse.y
207
if ((c = getc(file->stream)) == EOF) {
bin/chio/parse.y
217
while ((c = getc(file->stream)) == '\\') {
bin/chio/parse.y
218
next = getc(file->stream);
bin/chio/parse.y
230
c = getc(file->stream);
bin/ed/io.c
125
while (((c = getc(fp)) != EOF || (!feof(fp) &&
distrib/special/more/more.c
621
while ((ch = getc(f)) != EOF)
distrib/special/more/more.c
87
#define Getc(f) (++file_pos, getc(f))
games/adventure/setup.c
91
while ((c = getc(infile)) != EOF) {
games/adventure/setup.c
96
while ((c = getc(infile)) == ' ' && c != EOF);
games/boggle/boggle/help.c
56
if (ungetc(getc(fp), fp) == EOF) {
games/boggle/boggle/help.c
71
if (eof || ungetc(getc(fp), fp) == EOF) {
games/boggle/boggle/word.c
76
if ((pcount = getc(fp)) == EOF)
games/boggle/boggle/word.c
84
while ((ch = getc(fp)) != EOF && ch >= 'a')
games/boggle/mkdict/mkdict.c
79
while ((ch = getc(stdin)) != EOF && ch != '\n')
games/boggle/mkindex/mkindex.c
86
if ((pcount = getc(fp)) == EOF)
games/boggle/mkindex/mkindex.c
95
while ((ch = getc(fp)) != EOF && ch >= 'a')
games/fortune/strfile/strfile.c
396
while (!isalnum(c1 = getc(Sort_1)) && c1 != '\0')
games/fortune/strfile/strfile.c
398
while (!isalnum(c2 = getc(Sort_2)) && c2 != '\0')
games/fortune/strfile/strfile.c
412
c1 = getc(Sort_1);
games/fortune/strfile/strfile.c
413
c2 = getc(Sort_2);
games/gomoku/main.c
331
while ((c = getc(fp)) != EOF && c != '\n')
games/monop/cards.c
126
type_maj = getc(deckf);
games/monop/cards.c
128
type_min = getc(deckf);
games/monop/cards.c
223
while ((c = getc(deckf)) != '\0')
games/monop/cards.c
260
type_maj = getc(deckf);
games/monop/initdeck.c
159
while ((c=getc(inf)) != EOF)
games/monop/initdeck.c
163
if (getc(inf) == '-')
games/monop/initdeck.c
185
putc(getc(inf), outf);
games/monop/initdeck.c
186
putc(getc(inf), outf);
games/monop/initdeck.c
187
for (num = 0; (c=getc(inf)) != '\n'; )
games/monop/initdeck.c
192
while ((c=getc(inf)) != EOF)
games/monop/initdeck.c
196
if (getc(inf) == '-')
games/monop/initdeck.c
198
while (getc(inf) != '\n')
games/monop/initdeck.c
201
if ((c=getc(inf)) == EOF)
games/monop/initdeck.c
204
putc(c = getc(inf), outf);
games/monop/initdeck.c
205
for (num = 0; (c=getc(inf)) != EOF && c != '\n'; )
games/sail/sync.c
252
ch = getc(sync_fp);
include/stdio.h
154
int getc(FILE *);
include/stdio.h
303
#define getchar() getc(stdin)
lib/libc/db/recno/rec_get.c
134
if ((ch = getc(t->bt_rfp)) == EOF || !--len) {
lib/libc/db/recno/rec_get.c
180
if ((ch = getc(t->bt_rfp)) == EOF || ch == bval) {
lib/libc/hidden/stdio.h
149
#define getc(fp) (!__isthreaded ? __sgetc(fp) : (getc)(fp))
lib/libc/hidden/stdio.h
82
PROTO_NORMAL(getc);
lib/libc/stdio/fgetc.c
39
return (getc(fp));
lib/libc/stdio/getc.c
64
DEF_STRONG(getc);
lib/libc/stdio/getchar.c
58
return (getc(stdin));
lib/libedit/filecomplete.c
504
if (getc(stdin) != 'y')
lib/libpcap/etherent.c
101
c = getc(fp);
lib/libpcap/etherent.c
105
c = getc(fp);
lib/libpcap/etherent.c
110
c = getc(fp);
lib/libpcap/etherent.c
137
c = getc(fp);
lib/libpcap/etherent.c
59
c = getc(f);
lib/libpcap/etherent.c
71
c = getc(f);
libexec/fingerd/fingerd.c
222
while ((ch = getc(fp)) != EOF) {
libexec/ftpd/ftpcmd.y
1114
while ((c = getc(stdin)) != EOF) {
libexec/ftpd/ftpcmd.y
1117
if ((c = getc(stdin)) != EOF) {
libexec/ftpd/ftpcmd.y
1122
c = getc(stdin);
libexec/ftpd/ftpcmd.y
1128
c = getc(stdin);
libexec/ftpd/ftpcmd.y
1147
while (c != '\n' && (c = getc(stdin)) != EOF)
libexec/ftpd/ftpcmd.y
1536
while((c = getc(fin)) != EOF) {
libexec/ftpd/ftpd.c
1149
if ((c = getc(fin)) == EOF) {
libexec/ftpd/ftpd.c
1225
if ((c = getc(fout)) == EOF) {
libexec/ftpd/ftpd.c
1509
while ((c = getc(instr)) != EOF) {
libexec/ftpd/ftpd.c
1668
while ((c = getc(instr)) != EOF) {
libexec/ftpd/ftpd.c
1677
if ((c = getc(instr)) != '\n') {
libexec/ftpd/ftpd.c
1736
while ((c = getc(fin)) != EOF) {
regress/lib/libc/orientation/orientation_test.c
177
TEST_NARROW(getc(f));
regress/lib/libc/stdio/test_fflush.c
313
c = getc(fp);
regress/lib/libc/stdio/test_fflush.c
317
assert(getc(fp) == c);
regress/lib/libc/stdio/test_fflush.c
321
c = getc(fp);
regress/lib/libc/stdio/test_fflush.c
325
assert(getc(fp) == 'l');
regress/lib/libpthread/stdio/stdio.c
60
while ((i = getc(fp)) != EOF)
sbin/dhcp6leased/parse.y
276
c = getc(file->stream);
sbin/dhcpleased/parse.y
404
c = getc(file->stream);
sbin/fsck_ext2fs/utilities.c
103
while (c != '\n' && getc(stdin) != '\n')
sbin/fsck_ext2fs/utilities.c
98
c = getc(stdin);
sbin/fsck_ffs/utilities.c
100
c = getc(stdin);
sbin/fsck_ffs/utilities.c
105
while (c != '\n' && getc(stdin) != '\n') {
sbin/iked/parse.y
1675
c = getc(file->stream);
sbin/ipsecctl/parse.y
1140
if ((c = getc(file->stream)) == EOF) {
sbin/ipsecctl/parse.y
1149
while ((c = getc(file->stream)) == '\\') {
sbin/ipsecctl/parse.y
1150
next = getc(file->stream);
sbin/ipsecctl/parse.y
1162
c = getc(file->stream);
sbin/pdisk/io.c
56
return getc(stdin);
sbin/pfctl/parse.y
5643
c = getc(file->stream);
sbin/restore/utilities.c
333
c = getc(terminal);
sbin/restore/utilities.c
334
while (c != '\n' && getc(terminal) != '\n')
sbin/scsi/scsi.c
434
while (isspace(c = getc(f)))
sbin/scsi/scsi.c
438
while ((c = getc(f)) != '\n' && c != EOF)
sbin/scsi/scsi.c
479
if (getc(modes) != START_ENTRY) {
sbin/scsi/scsi.c
485
c = getc(modes);
sbin/unwind/libunbound/sldns/parse.c
61
while ((c = getc(f)) != EOF) {
sbin/unwind/libunbound/util/configlexer.c
3921
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
sbin/unwind/libunbound/validator/val_anchor.c
488
while((*c = getc(in)) != EOF ) {
sbin/unwind/libunbound/validator/val_anchor.c
534
while((c = getc(in)) != EOF ) {
sbin/unwind/libunbound/validator/val_anchor.c
555
while(c != EOF && (c=getc(in)) != EOF ) {
sbin/unwind/libunbound/validator/val_anchor.c
557
if((c=getc(in)) == '/')
sbin/unwind/libunbound/validator/val_anchor.c
590
while((c = getc(in)) != EOF ) {
sbin/unwind/parse.y
468
c = getc(file->stream);
sys/arch/hppa/dev/pdc.c
315
pdccnputc(tp->t_dev, getc(&tp->t_outq));
sys/arch/landisk/stand/boot/libsa.h
28
int getc(void);
sys/arch/powerpc64/dev/opalcons.c
246
opalcons_putc(tp->t_dev, getc(&tp->t_outq));
sys/arch/riscv64/dev/sfuart.c
351
HWRITE4(sc, UART_TXDATA, getc(&tp->t_outq));
sys/arch/sparc64/dev/sbbc.c
629
sbbc_cnputc(tp->t_dev, getc(&tp->t_outq));
sys/arch/sparc64/dev/vcons.c
307
vcons_cnputc(tp->t_dev, getc(&tp->t_outq));
sys/dev/fdt/amluart.c
357
HWRITE4(sc, UART_WFIFO, getc(&tp->t_outq));
sys/dev/fdt/cduart.c
579
cduart_write(sc, CDUART_FIFO, getc(&tp->t_outq));
sys/dev/ic/com.c
945
com_write_reg(sc, com_data, getc(&tp->t_outq));
sys/dev/ic/cy.c
1243
ch = getc(&tp->t_outq);
sys/dev/ic/pluart.c
441
bus_space_write_4(iot, ioh, UART_DR, getc(&tp->t_outq));
sys/dev/ic/qcuart.c
300
HWRITE4(sc, GENI_TX_FIFO, getc(&tp->t_outq));
sys/dev/wscons/wskbd.c
1415
(*wskbd_console_data.t_consops->getc)
sys/dev/wscons/wskbdvar.h
58
void (*getc)(void *, u_int *, int *);
sys/kern/tty.c
1467
while ((c = getc(&tq)) >= 0)
sys/kern/tty.c
1608
while ((c = getc(qp)) >= 0) {
sys/kern/tty_pty.c
312
if (ureadc(getc(&tp->t_canq), uio) < 0) {
sys/kern/tty_pty.c
317
(void) getc(&tp->t_canq);
sys/kern/tty_subr.c
470
while ((c = getc(from)) != -1)
sys/net/ppp_tty.c
312
getc(&tp->t_canq);
sys/sys/tty.h
257
int getc(struct clist *q);
usr.bin/at/at.c
719
while ((ch = getc(fp)) != EOF)
usr.bin/awk/b.c
907
*k++ = (c = getc(f)) != EOF ? c : 0;
usr.bin/awk/lib.c
252
while ((c=getc(inf)) == '\n' && c != EOF) /* skip leading \n's */
usr.bin/awk/lib.c
258
for (; (c=getc(inf)) != sep && c != EOF; ) {
usr.bin/awk/lib.c
267
if ((c = getc(inf)) == '\n' || c == EOF) /* 2 in a row */
usr.bin/awk/lib.c
303
while ((c = getc(inf)) != EOF) {
usr.bin/awk/main.c
321
if ((c = getc(yyin)) != EOF)
usr.bin/cmp/special.c
57
if (getc(fp1) == EOF)
usr.bin/cmp/special.c
60
if (getc(fp2) == EOF)
usr.bin/cmp/special.c
64
ch1 = getc(fp1);
usr.bin/cmp/special.c
65
ch2 = getc(fp2);
usr.bin/ctags/ctags.h
45
#define GETC(op,exp) ((c = getc(inf)) op (int)exp)
usr.bin/cut/cut.c
239
if ((ch = getc(fp)) == EOF)
usr.bin/cut/cut.c
248
while ((ch = getc(fp)) != EOF && ch != '\n')
usr.bin/cut/cut.c
251
while ((ch = getc(fp)) != EOF && ch != '\n')
usr.bin/cvs/diff3.c
744
c = getc(fp[0]);
usr.bin/cvs/diff3.c
745
d = getc(fp[1]);
usr.bin/cvs/diff_internals.c
1090
diff_output("%c", getc(lb));
usr.bin/cvs/diff_internals.c
1120
if ((c = getc(lb)) == EOF) {
usr.bin/cvs/diff_internals.c
1154
for (i = 0; (t = getc(f)) != '\n'; i++) {
usr.bin/cvs/diff_internals.c
1163
for (i = 0; (t = getc(f)) != '\n'; i++) {
usr.bin/cvs/diff_internals.c
1173
switch (t = getc(f)) {
usr.bin/cvs/diff_internals.c
672
c = getc(f1);
usr.bin/cvs/diff_internals.c
673
d = getc(f2);
usr.bin/cvs/diff_internals.c
691
} while (isspace(c = getc(f1)));
usr.bin/cvs/diff_internals.c
696
} while (isspace(d = getc(f2)));
usr.bin/cvs/diff_internals.c
699
c = getc(f1);
usr.bin/cvs/diff_internals.c
703
d = getc(f2);
usr.bin/cvs/diff_internals.c
723
if ((c = getc(f1)) != (d = getc(f2))) {
usr.bin/cvs/diff_internals.c
799
for (i = 1; (c = getc(f)) != '\n' && c != EOF; i++)
usr.bin/cvs/diff_internals.c
830
if ((c = getc(f1)) == EOF)
usr.bin/cvs/logmsg.c
246
c = getc(stdin);
usr.bin/cvs/rcsparse.c
848
c = getc(rfp->rf_file);
usr.bin/cvs/rcsparse.c
850
c = getc(rfp->rf_file);
usr.bin/cvs/rcsparse.c
903
c = getc(rfp->rf_file);
usr.bin/cvs/rcsparse.c
974
c = getc(rfp->rf_file);
usr.bin/dc/inout.c
75
return src->lastchar = getc(src->u.stream);
usr.bin/deroff/deroff.c
371
while ((c = getc(infile)) != rdelim) {
usr.bin/deroff/deroff.c
375
while ((c = getc(infile)) != '"') {
usr.bin/deroff/deroff.c
377
(c == '\\' && (c = getc(infile)) == EOF))
usr.bin/deroff/deroff.c
89
#define Cget ( (c=getc(infile)) == EOF ? eof() : ((c==ldelim)&&(filesp==files) ? skeqn() : c) )
usr.bin/deroff/deroff.c
90
#define C1get ( (c=getc(infile)) == EOF ? eof() : c)
usr.bin/diff/diffreg.c
1110
diff_output("%c", getc(lb));
usr.bin/diff/diffreg.c
1139
if ((c = getc(lb)) == EOF) {
usr.bin/diff/diffreg.c
1186
for (i = 0; (t = getc(f)) != '\n'; i++) {
usr.bin/diff/diffreg.c
1195
for (i = 0; (t = getc(f)) != '\n'; i++) {
usr.bin/diff/diffreg.c
1205
switch (t = getc(f)) {
usr.bin/diff/diffreg.c
721
c = getc(f1);
usr.bin/diff/diffreg.c
722
d = getc(f2);
usr.bin/diff/diffreg.c
744
} while (isspace(c = getc(f1)));
usr.bin/diff/diffreg.c
749
} while (isspace(d = getc(f2)));
usr.bin/diff/diffreg.c
752
c = getc(f1);
usr.bin/diff/diffreg.c
756
d = getc(f2);
usr.bin/diff/diffreg.c
776
if ((c = getc(f1)) != (d = getc(f2))) {
usr.bin/diff/diffreg.c
852
for (i = 1; (c = getc(f)) != '\n' && c != EOF; i++)
usr.bin/diff/diffreg.c
897
if ((c = getc(f1)) == EOF)
usr.bin/diff3/diff3prog.c
495
c = getc(fp[0]);
usr.bin/diff3/diff3prog.c
496
d = getc(fp[1]);
usr.bin/doas/parse.y
237
for (c = getc(yyfp); c == ' ' || c == '\t'; c = getc(yyfp))
usr.bin/doas/parse.y
251
while ((c = getc(yyfp)) != '\n')
usr.bin/doas/parse.y
262
for (;; c = getc(yyfp), yylval.colno++) {
usr.bin/finger/lprint.c
263
while ((ch = getc(fp)) != EOF)
usr.bin/finger/net.c
121
while ((c = getc(fp)) != EOF) {
usr.bin/fmt/fmt.c
686
while ((ch = getc(stream)) != '\n' && ch != EOF) {
usr.bin/gprof/printgprof.c
646
while ( ( input = getc( blurbfile ) ) != EOF )
usr.bin/head/head.c
122
while ((ch = getc(fp)) != EOF) {
usr.bin/indent/args.c
195
(i = getc(f)) != EOF && (*p = i) > ' ' && p + 1 - buf < BUFSIZ;
usr.bin/indent/indent.c
1230
while ((c = getc(input)) == '\n');
usr.bin/indent/io.c
358
if ((i = getc(f)) == EOF) {
usr.bin/locate/locate/fastfind.c
49
p[c] = check_bigram_char(getc(fp));
usr.bin/locate/locate/fastfind.c
50
s[c] = check_bigram_char(getc(fp));
usr.bin/locate/locate/fastfind.c
56
for (c = getc(fp), count = 0; c != EOF; size++) {
usr.bin/locate/locate/fastfind.c
65
for (p = path + count; (c = getc(fp)) > SWITCH; size++)
usr.bin/locate/locate/fastfind.c
68
c = getc(fp);
usr.bin/m4/eval.c
740
while ((c = getc(pf)) != EOF)
usr.bin/m4/gnum4.c
680
while ((c = getc(f))!= EOF)
usr.bin/m4/misc.c
234
while ((c = getc(outfile[n])) != EOF)
usr.bin/mail/collect.c
320
while ((t = getc(fbuf)) != EOF)
usr.bin/mail/collect.c
332
while ((t = getc(collf)) != EOF)
usr.bin/mail/collect.c
411
while ((c = getc(fp)) != EOF) {
usr.bin/mail/collect.c
593
while ((c = getc(fp)) != EOF)
usr.bin/mail/edit.c
117
while ((c = getc(fp)) != EOF) {
usr.bin/mail/edit.c
169
while (--size >= 0 && (t = getc(fp)) != EOF)
usr.bin/mail/edit.c
172
while ((t = getc(fp)) != EOF)
usr.bin/mail/names.c
256
while ((c = getc(fo)) != EOF)
usr.bin/mail/names.c
314
while ((c = getc(fin)) != EOF)
usr.bin/mail/popen.c
450
if (getc(lockfp) != '1') {
usr.bin/mail/quit.c
118
while ((c = getc(fbuf)) != EOF)
usr.bin/mail/quit.c
123
c = getc(fbuf);
usr.bin/mail/quit.c
212
while ((c = getc(abuf)) != EOF)
usr.bin/mail/quit.c
261
c = getc(ibuf);
usr.bin/mail/quit.c
266
c = getc(ibuf);
usr.bin/mail/quit.c
305
while ((c = getc(rbuf)) != EOF)
usr.bin/mail/quit.c
349
while ((c = getc(res)) != EOF)
usr.bin/mail/quit.c
363
while ((c = getc(res)) != EOF)
usr.bin/mail/quit.c
432
while ((c = getc(ibuf)) != EOF)
usr.bin/mail/quit.c
465
while ((c = getc(ibuf)) != EOF)
usr.bin/mail/send.c
244
if ((c = getc(ibuf)) != EOF && putc(c, obuf) == EOF)
usr.bin/mail/send.c
486
c = getc(fi);
usr.bin/mail/send.c
489
c = getc(fi);
usr.bin/mail/util.c
182
ungetc(c = getc(f), f);
usr.bin/mg/dired.c
728
while ((c = getc(fin)) != EOF &&
usr.bin/mg/fileio.c
187
while ((c = getc(ffp)) != EOF && c != *curbp->b_nlchr) {
usr.bin/newsyslog/newsyslog.c
1463
while ((i = getc(src)) != EOF) {
usr.bin/pkgconf/libpkgconf/fileio.c
25
while ((c = getc(stream)) != EOF)
usr.bin/pkgconf/libpkgconf/fileio.c
37
c = getc(stream);
usr.bin/pkgconf/libpkgconf/fileio.c
54
c2 = getc(stream);
usr.bin/pkgconf/libpkgconf/fileio.c
73
if ((c2 = getc(stream)) == '\n')
usr.bin/pr/pr.c
1156
while ((--lim >= 0) && ((ch = getc(inf)) != EOF)) {
usr.bin/pr/pr.c
1190
while ((--lim >= 0) && ((ch = getc(inf)) != EOF)) {
usr.bin/pr/pr.c
1226
while ((ch = getc(inf)) != EOF) {
usr.bin/rcs/diff.c
1025
diff_output("%c", getc(lb));
usr.bin/rcs/diff.c
1051
if ((c = getc(lb)) == EOF) {
usr.bin/rcs/diff.c
1084
for (i = 0; (t = getc(f)) != '\n'; i++) {
usr.bin/rcs/diff.c
1093
for (i = 0; (t = getc(f)) != '\n'; i++) {
usr.bin/rcs/diff.c
1103
switch (t = getc(f)) {
usr.bin/rcs/diff.c
654
c = getc(f1);
usr.bin/rcs/diff.c
655
d = getc(f2);
usr.bin/rcs/diff.c
673
} while (isspace(c = getc(f1)));
usr.bin/rcs/diff.c
678
} while (isspace(d = getc(f2)));
usr.bin/rcs/diff.c
681
c = getc(f1);
usr.bin/rcs/diff.c
685
d = getc(f2);
usr.bin/rcs/diff.c
705
if ((c = getc(f1)) != (d = getc(f2))) {
usr.bin/rcs/diff.c
781
for (i = 1; (c = getc(f)) != '\n' && c != EOF; i++)
usr.bin/rcs/diff.c
812
if ((c = getc(f1)) == EOF)
usr.bin/rcs/diff3.c
839
c = getc(fp[0]);
usr.bin/rcs/diff3.c
840
d = getc(fp[1]);
usr.bin/rcs/ident.c
100
for (c = 0; c != EOF; c = getc(fp)) {
usr.bin/rcs/ident.c
123
while ((c = getc(fp)) != VALDELIM) {
usr.bin/rcs/ident.c
135
while ((c = getc(fp)) != KEYDELIM) {
usr.bin/rcs/rcsparse.c
848
c = getc(rfp->rf_file);
usr.bin/rcs/rcsparse.c
850
c = getc(rfp->rf_file);
usr.bin/rcs/rcsparse.c
903
c = getc(rfp->rf_file);
usr.bin/rcs/rcsparse.c
973
c = getc(rfp->rf_file);
usr.bin/rdist/gram.y
237
switch (c = getc(fin)) {
usr.bin/rdist/gram.y
242
while ((c = getc(fin)) != EOF && c != '\n')
usr.bin/rdist/gram.y
267
if ((c = getc(fin)) == '>')
usr.bin/rdist/gram.y
281
c = getc(fin);
usr.bin/rdist/gram.y
285
if ((c = getc(fin)) == EOF) {
usr.bin/rdist/gram.y
303
if ((c = getc(fin)) == ':')
usr.bin/rdist/gram.y
316
if ((c = getc(fin)) != EOF) {
usr.bin/rdist/gram.y
325
c = getc(fin);
usr.bin/rdistd/server.c
818
while ((c = getc(f1)) == getc(f2))
usr.bin/sed/main.c
364
if (infile != NULL && (c = getc(infile)) != EOF) {
usr.bin/sed/main.c
498
if ((ch = getc(file_fd)) != EOF) {
usr.bin/sed/main.c
522
if ((ch = getc(infile)) == EOF) {
usr.bin/tail/forward.c
111
if ((ch = getc(tf[i].fp)) == EOF) {
usr.bin/tail/forward.c
123
if ((ch = getc(tf[i].fp)) == EOF) {
usr.bin/tail/forward.c
142
while (getc(tf[i].fp) != EOF)
usr.bin/tail/forward.c
164
while (getc(tf[i].fp) != EOF)
usr.bin/tail/forward.c
262
if ((ch = getc(tf[0].fp)) == '\n')
usr.bin/tail/forward.c
278
while (!feof(tf[0].fp) && (ch = getc(tf[0].fp)) != EOF)
usr.bin/tail/forward.c
294
while (!feof(fp) && (ch = getc(fp)) != EOF)
usr.bin/tail/read.c
156
while ((ch = getc(tf->fp)) != EOF) {
usr.bin/tail/read.c
76
for (wrap = 0, ep = p + off; (ch = getc(tf->fp)) != EOF;) {
usr.bin/tail/reverse.c
137
if ((ch = getc(tf->fp)) == '\n') {
usr.bin/tail/reverse.c
213
len < BSZ && (ch = getc(fp)) != EOF; ++len)
usr.bin/tail/reverse.c
50
if ((ch = getc(tf->fp)) == EOF) { \
usr.bin/tftp/tftpsubs.c
159
c = getc(file);
usr.bin/tmux/cmd-parse.y
1189
ch = getc(ps->f);
usr.bin/unvis/unvis.c
83
while ((c = getc(fp)) != EOF) {
usr.bin/usbhidaction/usbhidaction.c
223
c = getc(f);
usr.bin/vi/ex/ex_argv.c
667
(ch = getc(ifp)) != EOF; *p++ = ch, --blen, ++len)
usr.bin/vi/ex/ex_util.c
86
if ((ch = getc(fp)) == EOF && !feof(fp)) {
usr.bin/vis/vis.c
137
c = getc(fp);
usr.bin/vis/vis.c
139
rachar = getc(fp);
usr.bin/yacc/output.c
1085
if ((c = getc(in)) == EOF)
usr.bin/yacc/output.c
1108
while ((c = getc(in)) != EOF) {
usr.bin/yacc/output.c
1132
if ((c = getc(action_file)) == EOF)
usr.bin/yacc/output.c
1140
while ((c = getc(action_file)) != EOF) {
usr.bin/yacc/output.c
836
while ((c = getc(union_file)) != EOF)
usr.bin/yacc/output.c
854
if ((c = getc(in)) == EOF)
usr.bin/yacc/output.c
860
while ((c = getc(in)) != EOF) {
usr.bin/yacc/reader.c
129
if (saw_eof || (c = getc(f)) == EOF) {
usr.bin/yacc/reader.c
159
c = getc(f);
usr.sbin/acme-client/parse.y
556
c = getc(file->stream);
usr.sbin/amd/amd/info_file.c
69
while ((ch = getc(fp)) != EOF &&
usr.sbin/bgpd/parse.y
3750
c = getc(file->stream);
usr.sbin/config/misc.c
89
first = ch = getc(cmdfp ? cmdfp : stdin);
usr.sbin/config/misc.c
95
ch = getc(cmdfp ? cmdfp : stdin);
usr.sbin/cron/do_command.c
358
int ch = getc(in);
usr.sbin/cron/do_command.c
419
while ((ch = getc(in)) != EOF) {
usr.sbin/cron/misc.c
43
ch = getc(file);
usr.sbin/dhcpd/conflex.c
102
int c = getc(cfile);
usr.sbin/dvmrpd/parse.y
449
if ((c = getc(file->stream)) == EOF) {
usr.sbin/dvmrpd/parse.y
459
while ((c = getc(file->stream)) == '\\') {
usr.sbin/dvmrpd/parse.y
460
next = getc(file->stream);
usr.sbin/dvmrpd/parse.y
472
c = getc(file->stream);
usr.sbin/eigrpd/parse.y
669
c = getc(file->stream);
usr.sbin/hostapd/parse.y
1356
c = getc(file->stream);
usr.sbin/httpd/parse.y
1705
c = getc(file->stream);
usr.sbin/ifstated/parse.y
443
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ifstated/parse.y
453
while ((c = getc(file->stream)) == '\\') {
usr.sbin/ifstated/parse.y
454
next = getc(file->stream);
usr.sbin/ifstated/parse.y
466
c = getc(file->stream);
usr.sbin/inetd/inetd.c
1319
c = getc(fconfig);
usr.sbin/iscsictl/parse.y
415
c = getc(file->stream);
usr.sbin/iscsictl/parse.y
456
c = getc(file->stream);
usr.sbin/ldapd/parse.y
507
c = getc(file->stream);
usr.sbin/ldapd/schema.c
289
if ((c = getc(schema->fp)) == EOF) {
usr.sbin/ldapd/schema.c
297
while ((c = getc(schema->fp)) == '\\') {
usr.sbin/ldapd/schema.c
298
next = getc(schema->fp);
usr.sbin/ldomctl/parse.y
441
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ldomctl/parse.y
451
while ((c = getc(file->stream)) == '\\') {
usr.sbin/ldomctl/parse.y
452
next = getc(file->stream);
usr.sbin/ldomctl/parse.y
464
c = getc(file->stream);
usr.sbin/ldpd/parse.y
983
c = getc(file->stream);
usr.sbin/lpd/parse.y
305
if ((c = getc(file->stream)) == EOF) {
usr.sbin/lpd/parse.y
315
while ((c = getc(file->stream)) == '\\') {
usr.sbin/lpd/parse.y
316
next = getc(file->stream);
usr.sbin/lpd/parse.y
328
c = getc(file->stream);
usr.sbin/lpd/printer.c
1025
while ((c = getc(efp)) != EOF)
usr.sbin/lpr/common_source/common.c
204
while ((c = getc(cfp)) != '\n' && linel+1<sizeof(line)) {
usr.sbin/lpr/common_source/displayq.c
184
while ((i = getc(fp)) != EOF && i != '\n') {
usr.sbin/lpr/common_source/displayq.c
203
while ((i = getc(fp)) != EOF && i != '\n') {
usr.sbin/lpr/filters/lpf.c
116
switch (ch = getc(p)) {
usr.sbin/lpr/lpd/printjob.c
1168
while ((i = getc(fp)) != EOF)
usr.sbin/npppd/npppd/parse.y
1227
if ((c = getc(file->stream)) == EOF) {
usr.sbin/npppd/npppd/parse.y
1237
while ((c = getc(file->stream)) == '\\') {
usr.sbin/npppd/npppd/parse.y
1238
next = getc(file->stream);
usr.sbin/npppd/npppd/parse.y
1250
c = getc(file->stream);
usr.sbin/ntpd/parse.y
589
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ntpd/parse.y
599
while ((c = getc(file->stream)) == '\\') {
usr.sbin/ntpd/parse.y
600
next = getc(file->stream);
usr.sbin/ntpd/parse.y
612
c = getc(file->stream);
usr.sbin/ospf6d/parse.y
699
c = getc(file->stream);
usr.sbin/ospfd/parse.y
888
c = getc(file->stream);
usr.sbin/pppd/options.c
737
c = getc(f);
usr.sbin/pppd/options.c
794
c = getc(f);
usr.sbin/pppd/options.c
810
c = getc(f);
usr.sbin/pppd/options.c
846
c = getc(f);
usr.sbin/pppd/options.c
857
c = getc(f);
usr.sbin/pppd/options.c
863
c = getc (f);
usr.sbin/pppd/options.c
885
c = getc(f);
usr.sbin/pppd/options.c
908
c = getc(f);
usr.sbin/pppd/options.c
920
c = getc(f);
usr.sbin/rad/parse.y
578
c = getc(file->stream);
usr.sbin/radiusd/parse.y
662
if ((c = getc(file->stream)) == EOF) {
usr.sbin/radiusd/parse.y
672
while ((c = getc(file->stream)) == '\\') {
usr.sbin/radiusd/parse.y
673
next = getc(file->stream);
usr.sbin/radiusd/parse.y
685
c = getc(file->stream);
usr.sbin/relayd/parse.y
2663
else c = getc(file->stream);
usr.sbin/ripd/parse.y
484
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ripd/parse.y
494
while ((c = getc(file->stream)) == '\\') {
usr.sbin/ripd/parse.y
495
next = getc(file->stream);
usr.sbin/ripd/parse.y
507
c = getc(file->stream);
usr.sbin/smtpd/parse.y
2810
c = getc(file->stream);
usr.sbin/snmpd/parse.y
1366
else c = getc(file->stream);
usr.sbin/snmpd/parse.y
1405
c = getc(file->stream);
usr.sbin/tftpd/tftpd.c
1084
return (getc(client->file));
usr.sbin/tftpd/tftpd.c
1100
c = getc(client->file);
usr.sbin/unbound/sldns/parse.c
61
while ((c = getc(f)) != EOF) {
usr.sbin/unbound/validator/val_anchor.c
488
while((*c = getc(in)) != EOF ) {
usr.sbin/unbound/validator/val_anchor.c
534
while((c = getc(in)) != EOF ) {
usr.sbin/unbound/validator/val_anchor.c
555
while(c != EOF && (c=getc(in)) != EOF ) {
usr.sbin/unbound/validator/val_anchor.c
557
if((c=getc(in)) == '/')
usr.sbin/unbound/validator/val_anchor.c
590
while((c = getc(in)) != EOF ) {
usr.sbin/vmd/parse.y
889
c = getc(file->stream);
usr.sbin/vmd/parse.y
929
c = getc(file->stream);
usr.sbin/ypbind/ypbind.c
797
while ((c = getc(ypdb->dom_servlistfp)) != '\n' && c != EOF)
usr.sbin/ypldap/parse.y
596
c = getc(file->stream);
usr.sbin/ypserv/makedbm/makedbm.c
66
while ((ch = getc(fp)) != EOF &&
usr.sbin/ypserv/mknetid/mknetid.c
84
while ((ch = getc(fp)) != EOF &&