Home
last modified time | relevance | path

Searched refs:next_ch (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/common/lib/libc/string/
H A Dstrspn.c81 unsigned char ch, next_ch; in strspn_x() local
92 for (ch = *charset; ch != 0; ch = next_ch) { in strspn_x()
93 next_ch = *++charset; in strspn_x()
123 for (count = 0; ch != 0; ch = next_ch) { in strspn_x()
124 next_ch = s[count]; in strspn_x()
/netbsd-src/dist/pf/sbin/pfctl/
H A Dpfctl_radix.c587 static char next_ch = ' '; in pfr_next_token() local
592 while (isspace((unsigned char)next_ch) && !feof(fp)) in pfr_next_token()
593 next_ch = fgetc(fp); in pfr_next_token()
595 if (next_ch == '#') in pfr_next_token()
597 next_ch = fgetc(fp); in pfr_next_token()
598 if (next_ch == '\n') in pfr_next_token()
605 next_ch = ' '; in pfr_next_token()
610 buf[i++] = next_ch; in pfr_next_token()
611 next_ch = fgetc(fp); in pfr_next_token()
612 } while (!feof(fp) && !isspace((unsigned char)next_ch)); in pfr_next_token()