Searched refs:next_ch (Results 1 – 2 of 2) sorted by relevance
81 unsigned char ch, next_ch; in strspn_x() local92 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()
587 static char next_ch = ' '; in pfr_next_token() local592 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()