Lines Matching defs:line
213 /* read line from stream */
243 SANE_Char line[PATH_MAX];
267 /* loop reading the configuration file, all line beginning by "option " are
268 * parsed for value to store in configuration structure, other line are
271 while (sanei_config_read (line, PATH_MAX, fp) && status == SANE_STATUS_GOOD)
273 /* skip white spaces at beginning of line */
274 lp = sanei_config_skip_whitespace (line);
280 /* skip comment line */
281 if (line[0] == '#')
284 len = strlen (line);
287 if (line[len - 1] == '\n')
288 line[--len] = '\0';
292 /* to ensure maximum compatibility, we accept line like:
295 * So we parse the line 2 time to find an option */
425 "sanei_configure_attach: failed to parse option '%s', line '%s'\n",
426 token, line);