Home | History | Annotate | Download | only in sed

Lines Matching defs:infile

107 FILE *infile;			/* Current input file */
350 if (infile == NULL) {
355 infile = stdin;
364 if (infile != NULL && (c = getc(infile)) != EOF) {
365 (void)ungetc(c, infile);
369 if (infile == stdin) {
373 if (infile != NULL) {
374 fclose(infile);
457 if ((infile = fopen(fname, "r")) == NULL) {
464 * We are here only when infile is open and we still have something
471 ssize_t slen = getline(&p, &plen, infile);
553 if (feof(infile)) {
558 if ((ch = getc(infile)) == EOF) {
563 ungetc(ch, infile);