Home | History | Annotate | Download | only in pfctl

Lines Matching defs:next_ch

587 	static char	next_ch = ' ';
592 while (isspace((unsigned char)next_ch) && !feof(fp))
593 next_ch = fgetc(fp);
595 if (next_ch == '#')
597 next_ch = fgetc(fp);
598 if (next_ch == '\n')
605 next_ch = ' ';
610 buf[i++] = next_ch;
611 next_ch = fgetc(fp);
612 } while (!feof(fp) && !isspace((unsigned char)next_ch));