Searched refs:next_ch (Results 1 – 7 of 7) sorted by relevance
313 int next_ch;321 - next_ch = getc (f);322 - while (next_ch != eos && next_ch != EOF)323 + while ((next_ch = getc (f)) != eos && next_ch != EOF)330 - s->ds_string[insize++] = next_ch;331 - next_ch = getc (f);333 + s->ds_string[s->ds_idx++] = next_ch;339 - if (insize == 1 && next_ch == EOF)340 + if (s->ds_idx == 0 && next_ch == EOF)543 while ((next_ch = getc (f)) != eos && next_ch != EOF)[all …]
309 int next_ch;317 - next_ch = getc (f);318 - while (next_ch != eos && next_ch != EOF)319 + while ((next_ch = getc (f)) != eos && next_ch != EOF)326 - s->ds_string[insize++] = next_ch;327 - next_ch = getc (f);329 + s->ds_string[s->ds_idx++] = next_ch;335 - if (insize == 1 && next_ch == EOF)336 + if (s->ds_idx == 0 && next_ch == EOF)
321 goto next_ch; in scan_select_channel()342 next_ch: in scan_select_channel()366 goto next_ch; in scan_select_channel()
156 next_ch: in _cmd_scan_select_chnl()187 goto next_ch; in _cmd_scan_select_chnl()
996 int ch, last_ch, quote_ch, next_ch; in __read_token() local1025 next_ch = peek_char(); in __read_token()1026 if (next_ch == '>') { in __read_token()