HomeSort by: relevance | last modified time | path
    Searched defs:next_ch (Results 1 - 2 of 2) sorted by relevancy

  /src/common/lib/libc/string/
strspn.c 81 unsigned char ch, next_ch; local in function:strspn_x
92 for (ch = *charset; ch != 0; ch = next_ch) {
93 next_ch = *++charset;
123 for (count = 0; ch != 0; ch = next_ch) {
124 next_ch = s[count];
  /src/dist/pf/sbin/pfctl/
pfctl_radix.c 587 static char next_ch = ' '; local in function:pfr_next_token
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));
    [all...]

Completed in 12 milliseconds