Lines Matching defs:EOF
58 #define EOF (-1) /* needed by compression code */
122 return (EOF);
132 return EOF;
150 if (c == EOF)
169 if ((c == EOF) && (len == 0)) {
171 * We must not change s->compressed if we are at EOF;
180 if (c != EOF) {
203 /* len is garbage if EOF but the loop below will quit anyway */
204 while (len-- != 0 && get_byte(s) != EOF) /*void*/;
208 while ((c = get_byte(s)) != 0 && c != EOF) /*void*/;
212 while ((c = get_byte(s)) != 0 && c != EOF) /*void*/;
286 return (0); /* EOF */