Searched refs:getc (Results 51 - 75 of 161) sorted by relevance

1234567

/freebsd-13-stable/contrib/tcp_wrappers/
H A Dworkarounds.c94 while (len > 1 && (c = getc(fp)) != EOF) {
/freebsd-13-stable/libexec/fingerd/
H A Dfingerd.c226 while ((ch = getc(fp)) != EOF) {
/freebsd-13-stable/contrib/diff/lib/
H A Dexclude.c222 while ((c = getc (in)) != EOF)
/freebsd-13-stable/contrib/one-true-awk/
H A Dmain.c210 if ((c = getc(yyin)) != EOF)
H A Dlib.c201 while ((c=getc(inf)) == '\n' && c != EOF) /* skip leading \n's */
207 for (; (c=getc(inf)) != sep && c != EOF; ) {
215 if ((c = getc(inf)) == '\n' || c == EOF) /* 2 in a row */
/freebsd-13-stable/contrib/nvi/ex/
H A Dex_util.c66 if ((ch = getc(fp)) == EOF && !feof(fp)) {
/freebsd-13-stable/stand/i386/boot2/
H A Dboot2.c123 static inline int getc(int);
639 getc(int fn) function
655 if (DO_KBD && getc(1))
656 return (fn ? 1 : getc(0));
/freebsd-13-stable/stand/liblua/
H A Dlstd.c166 getc(FILE *stream) function
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Diruserok.c118 while ((ch = getc(hostf)) != '\n' && ch != EOF);
/freebsd-13-stable/usr.sbin/ypldap/
H A Dparse.y442 if ((c = getc(file->stream)) == EOF) {
452 while ((c = getc(file->stream)) == '\\') {
453 next = getc(file->stream);
465 c = getc(file->stream);
/freebsd-13-stable/usr.bin/gzip/
H A Dunlz.c170 rd->code = (rd->code << 8) | (uint8_t)getc(rd->fp);
188 rd->code = (rd->code << 8) | (uint8_t)getc(rd->fp);
215 rd->code = (rd->code << 8) | (uint8_t)getc(rd->fp);
556 trailer[i] = (uint8_t)getc(lz.fin);
/freebsd-13-stable/sbin/restore/
H A Dutilities.c395 c = getc(terminal);
396 while (c != '\n' && getc(terminal) != '\n')
/freebsd-13-stable/contrib/dialog/
H A Dtailbox.c52 if (((ch = getc(fp)) == EOF) && !feof(fp))
273 ch = getc(cb->input);
/freebsd-13-stable/bin/cat/
H A Dcat.c305 for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) {
347 if ((ch = getc(fp)) == EOF)
/freebsd-13-stable/contrib/byacc/
H A Doutput.c1290 while ((c = getc(union_file)) != EOF)
1316 if ((c = getc(in)) == EOF)
1319 while ((c = getc(in)) != EOF)
1653 if ((c = getc(in)) == EOF)
1671 while ((c = getc(in)) != EOF)
1690 if ((c = getc(action_file)) == EOF)
1695 while ((c = getc(action_file)) != EOF)
/freebsd-13-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.y1048 while ((c = getc(stdin)) != EOF) {
1051 if ((c = getc(stdin)) != EOF) {
1056 c = getc(stdin);
1062 c = getc(stdin);
1465 while((c=getc(fin)) != EOF) {
/freebsd-13-stable/contrib/opie/
H A Dftpcmd.y901 while ((c = getc(iop)) != EOF) {
904 if ((c = getc(iop)) != EOF) {
909 c = getc(iop);
915 c = getc(iop);
1278 while((c=getc(fin)) != EOF) {
H A Dopieftpd.c698 if ((c = getc(fin)) == EOF) {
751 if ((c = getc(fout)) == EOF) {
930 while ((c = getc(instr)) != EOF) {
1024 while ((c = getc(instr)) != EOF) {
1031 if ((c = getc(instr)) != '\n') {
1081 while ((c = getc(fin)) != EOF) {
/freebsd-13-stable/usr.bin/pr/
H A Dpr.c163 while ((pch = getc(ttyfp)) != '\n' && pch != EOF)
1042 while ((--lim >= 0) && ((ch = getc(inf)) != EOF)) {
1074 while ((--lim >= 0) && ((ch = getc(inf)) != EOF)) {
1104 while ((ch = getc(inf)) != EOF) {
1277 while ((c = getc(inf)) != EOF) {
/freebsd-13-stable/usr.sbin/config/
H A Dmain.c355 while ((ch = getc(fp)) != EOF)
377 while ((ch = getc(fp)) != EOF) {
401 while ((ch = getc(fp)) != EOF)
422 while ((ch = getc(fp)) != EOF) {
441 while ((ch = getc(fp)) != EOF) {
540 while ((i = getc(cff)) != EOF) {
/freebsd-13-stable/libexec/ftpd/
H A Dftpcmd.y1192 while ((c = getc(iop)) != EOF) {
1195 if ((c = getc(iop)) == EOF)
1201 if ((c = getc(iop)) == EOF)
1208 if ((c = getc(iop)) == EOF)
1227 while (c != '\n' && (c = getc(iop)) != EOF)
1622 while((c=getc(fin)) != EOF) {
/freebsd-13-stable/contrib/tnftp/src/
H A Dftp.c390 ((c = getc(cin)) != '\n')) {
392 switch (c = getc(cin)) {
395 c = getc(cin);
401 c = getc(cin);
802 while ((c = getc(fin)) != EOF) {
1074 if ((ch = getc(fout)) == EOF)
1085 while ((c = getc(din)) != EOF) {
1095 if ((c = getc(din)) != '\n' || tcrflag) {
/freebsd-13-stable/usr.sbin/cron/cron/
H A Ddo_command.c519 ch = getc(in);
588 while (EOF != (ch = getc(in))) {
/freebsd-13-stable/usr.sbin/lpr/common_source/
H A Ddisplayq.c166 while ((i = getc(fp)) != EOF && i != '\n') {
185 while ((i = getc(fp)) != EOF && i != '\n') {
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtio.c497 c = getc (Handle);
532 c1 = getc (Handle);

Completed in 201 milliseconds

1234567