Lines Matching defs:eline
182 char *eline;
192 for (line = buf; line < ebuf; line = eline) {
199 eline = line;
201 for (; eline < ebuf; eline++) {
203 if (comment == NULL && *eline == '\\' &&
204 eline + 1 < ebuf && *(eline + 1) == '\n') {
205 *eline = ' ';
206 *(eline + 1) = ' ';
213 if (comment == NULL && *eline == '#') {
214 *eline = '\0';
215 comment = (eline + 1);
220 if (*eline == '\n')
225 if (eline >= ebuf) {
229 *eline++ = '\0';