Searched refs:getc (Results 76 - 100 of 161) sorted by relevance

1234567

/freebsd-13-stable/usr.bin/localedef/
H A Dscanner.c255 c = getc(stdin);
257 c = getc(input);
/freebsd-13-stable/lib/libc/tests/stdio/
H A Dgetdelim_test.c158 getc(fp);
/freebsd-13-stable/contrib/ldns/drill/
H A Ddrill_util.c23 c = getc(input);
/freebsd-13-stable/contrib/ldns/
H A Dparse.c58 while ((c = getc(f)) != EOF) {
395 /* with getc, we've read too far */
/freebsd-13-stable/contrib/libpcap/rpcapd/
H A Dfileconf.c104 while ((c = getc(fp)) != '\n')
/freebsd-13-stable/contrib/dialog/samples/install/
H A Dsetup.c94 while (size-- && ((c = getc(f)) != EOF) && (c != '\n'))
/freebsd-13-stable/bin/ed/
H A Dio.c118 while (((c = getc(fp)) != EOF || (!feof(fp) && !ferror(fp))) &&
/freebsd-13-stable/contrib/nvi/ex/
H A Dex_cscope.c698 while ((ch = getc(csc->from_fp)) != EOF && ch != '\n');
1074 getc(csc->from_fp)) != EOF && ch != CSCOPE_PROMPT[0]);
1079 if (getc(csc->from_fp) != CSCOPE_PROMPT[1])
1081 if (getc(csc->from_fp) != CSCOPE_PROMPT[2])
/freebsd-13-stable/contrib/lua/src/
H A Dlauxlib.c725 c = getc(lf->f);
730 return getc(lf->f); /* return next character */
745 c = getc(lf->f);
747 *cp = getc(lf->f); /* skip end-of-line, if present */
H A Dliolib.c96 #define l_getc(f) getc(f)
506 int c = getc(f);
/freebsd-13-stable/sys/dev/uart/
H A Duart_dev_lowrisc.c73 .getc = lowrisc_uart_getc,
H A Duart_dev_mu.c150 .getc = uart_mu_getc,
/freebsd-13-stable/usr.bin/vi/
H A DMakefile64 SRCS+= getc.c v_at.c v_ch.c v_cmd.c v_delete.c v_ex.c v_increment.c v_init.c \
/freebsd-13-stable/usr.sbin/fdwrite/
H A Dfdwrite.c125 i = getc(tty);
/freebsd-13-stable/usr.bin/mail/
H A Dtty.c217 c = getc(stdin);
H A Dnames.c335 while ((c = getc(fo)) != EOF)
399 while ((c = getc(fin)) != EOF)
/freebsd-13-stable/contrib/unbound/validator/
H A Dval_anchor.c489 while((c = getc(in)) != EOF ) {
535 while((c = getc(in)) != EOF ) {
554 while(c != EOF && (c=getc(in)) != EOF ) {
556 if((c=getc(in)) == '/')
588 while((c = getc(in)) != EOF ) {
/freebsd-13-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.c3104 while ((c = getc(stdin)) != EOF) {
3107 if ((c = getc(stdin)) != EOF) {
3112 c = getc(stdin);
3118 c = getc(stdin);
3521 while((c=getc(fin)) != EOF) {
/freebsd-13-stable/usr.bin/diff3/
H A Ddiff3.c460 c = getc(fp[0]);
461 d = getc(fp[1]);
/freebsd-13-stable/contrib/unbound/sldns/
H A Dparse.c60 while ((c = getc(f)) != EOF) {
442 /* with getc, we've read too far */
/freebsd-13-stable/sbin/dhclient/
H A Dconflex.c95 int c = getc(cfile);
/freebsd-13-stable/contrib/libedit/
H A Dfilecomplete.c781 if (getc(stdin) != 'y')
/freebsd-13-stable/contrib/elftoolchain/strings/
H A Dstrings.c322 c = getc(pfile);
/freebsd-13-stable/stand/userboot/test/
H A Dtest.c405 .getc = test_getc,
/freebsd-13-stable/usr.sbin/cron/lib/
H A Dmisc.c225 /* get_char(file) : like getc() but increment LineNumber on newlines
233 ch = getc(file);

Completed in 149 milliseconds

1234567