HomeSort by: relevance | last modified time | path
    Searched refs:PEOF (Results 1 - 3 of 3) sorted by relevancy

  /src/bin/sh/
syntax.h 71 #define PEOF (CHAR_MIN - 1)
parser.c 821 * we are at the end of the here document, this routine sets the c to PEOF.
833 if (c == PEOF) {
847 if ((c2 == PEOF || c2 == '\n') && *q == '\0') {
848 c = PEOF;
858 c = PEOF;
883 if (c == PEOF && *eofmark != '\0')
888 while ((c = checkend(c, eofmark, striptabs)) != PEOF) {
927 } while ((c = pgetc()) != PEOF);
934 if (c == PEOF || (c = pgetc()) == PEOF)
    [all...]
input.c 151 if (c == PEOF) {
169 * Read a character from the script, returning PEOF on end of file.
268 return PEOF;
276 return PEOF;
408 * PEOF may be pushed back.

Completed in 37 milliseconds