Searched refs:getc (Results 26 - 50 of 161) sorted by relevance

1234567

/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcstdio.inc34 using ::getc;
/freebsd-current/contrib/unvis/
H A Dunvis.c114 while ((c = getc(fp)) != EOF) {
/freebsd-current/libexec/mknetid/
H A Dparse_group.c110 while ((ch = getc(_gr_fp)) != '\n' && ch != EOF)
/freebsd-current/usr.bin/ctags/
H A Dctags.h42 #define GETC(op,exp) ((c = getc(inf)) op (int)exp)
46 * of the arrays is always 'NO', as the EOF return from getc() gets masked
48 * returned by getc() provided chars have 8 bits.
71 extern long lineftell; /* ftell after getc( inf ) == '\n' */
/freebsd-current/contrib/vis/
H A Dvis.c194 c = (wint_t)getc(fp);
205 rachar = (wint_t)getc(fp);
/freebsd-current/usr.bin/tail/
H A Dread.c74 for (wrap = 0, ep = p + off; (ch = getc(fp)) != EOF;) {
151 while ((ch = getc(fp)) != EOF) {
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcstdio.inc34 using std::getc;
/freebsd-current/crypto/heimdal/appl/login/
H A Dread_string.c91 c = getc(tty);
/freebsd-current/stand/userboot/
H A Duserboot.h63 int (*getc)(void *arg); member in struct:loader_callbacks
/freebsd-current/usr.bin/fortune/strfile/
H A Dstrfile.c397 while (!isalnum(c1 = getc(Sort_1)) && c1 != '\0' && c1 != EOF)
399 while (!isalnum(c2 = getc(Sort_2)) && c2 != '\0' && c2 != EOF)
413 c1 = getc(Sort_1);
414 c2 = getc(Sort_2);
/freebsd-current/usr.bin/diff/
H A Ddiffreg.c751 c = getc(f1);
752 d = getc(f2);
770 if ((c = getc(f1)) == '\n') {
777 if ((d = getc(f2)) == '\n') {
791 } while (isspace(c = getc(f1)));
796 } while (isspace(d = getc(f2)));
799 c = getc(f1);
803 d = getc(f2);
823 if ((c = getc(f1)) != (d = getc(f
[all...]
/freebsd-current/crypto/heimdal/appl/telnet/libtelnet/
H A Drsaencpwd.c222 j = getc(fp); key[i]=j;
277 j = getc(fp);
284 j = getc(fp); key[i]=j;
/freebsd-current/usr.bin/tsort/
H A Dtsort.c145 for (n = 0, c = getc(fp);;) {
147 c = getc(fp);
158 c = getc(fp);
/freebsd-current/usr.bin/sed/
H A Dmain.c339 if (infile != NULL && (c = getc(infile)) != EOF && !quit) {
511 if ((ch = getc(file_fd)) != EOF) {
537 if ((ch = getc(infile)) == EOF) {
/freebsd-current/contrib/telnet/libtelnet/
H A Drsaencpwd.c214 j = getc(fp); key[i]=j;
269 j = getc(fp);
276 j = getc(fp); key[i]=j;
/freebsd-current/usr.bin/cut/
H A Dcut.c244 if ((ch = getc(fp)) == EOF)
253 while ((ch = getc(fp)) != EOF && ch != '\n')
256 while ((ch = getc(fp)) != EOF && ch != '\n');
/freebsd-current/contrib/nvi/common/
H A Dmultibyte.h92 #define GETC getc
/freebsd-current/usr.bin/mail/
H A Dcollect.c430 while ((t = getc(fbuf)) != EOF)
442 while ((t = getc(collf)) != EOF)
512 while ((c = getc(fp)) != EOF) {
721 while ((c = getc(fp)) != EOF)
/freebsd-current/usr.sbin/lpr/filters/
H A Dlpf.c115 switch (ch = getc(p)) {
/freebsd-current/include/
H A Dstdio.h103 * This ensures that the getc and putc macros (or inline functions) never
123 int _r; /* (*) read space left for getc() */
144 unsigned char _nbuf[1]; /* guarantee a getc() buffer */
267 int getc(FILE *);
504 #define getc(fp) (!__isthreaded ? __sgetc(fp) : (getc)(fp)) macro
507 #define getchar() getc(stdin)
/freebsd-current/contrib/mtree/
H A Dgetid.c234 while ((ch = getc(_gr_fp)) != '\n' && ch != EOF)
382 while ((ch = getc(_pw_fp)) != '\n' && ch != EOF)
/freebsd-current/usr.bin/lastcomm/
H A Dreadrec.c201 if ((magic = getc(f)) == EOF)
237 (c = getc(f)) == EOF)
/freebsd-current/usr.bin/mkstr/
H A Dmkstr.c315 while (--rmdr > 0 && (c = getc(file)) != 0 && c != EOF)
318 getc(file);
/freebsd-current/lib/libc/db/recno/
H A Drec_get.c132 if ((ch = getc(t->bt_rfp)) == EOF || !--len) {
177 if ((ch = getc(t->bt_rfp)) == EOF || ch == bval) {
/freebsd-current/tools/tools/ath/athprom/
H A Dathprom.c232 c = getc(fd);
258 c = getc(fd);
269 c = getc(fd);
289 while ((c = getc(fd)) != EOF && isblank(c))
876 while ((c = getc(ftemplate)) != EOF) {
879 while ((c = getc(ftemplate)) != EOF && c != '\n')
969 c = getc(ftemplate);

Completed in 178 milliseconds

1234567