Home | History | Annotate | Download | only in libpopt

Lines Matching refs:line

14 static void configLine(poptContext con, char * line)
30 if (strncmp(line, con->appName, nameLength)) return;
32 line += nameLength;
33 if (*line == '\0' || !isspace(*line)) return;
35 while (*line != '\0' && isspace(*line)) line++;
36 entryType = line;
37 while (*line == '\0' || !isspace(*line)) line++;
38 *line++ = '\0';
40 while (*line != '\0' && isspace(*line)) line++;
41 if (*line == '\0') return;
42 opt = line;
43 while (*line == '\0' || !isspace(*line)) line++;
44 *line++ = '\0';
46 while (*line != '\0' && isspace(*line)) line++;
47 if (*line == '\0') return;
49 /*@-temptrans@*/ /* FIX: line alias is saved */
56 if (poptParseArgvString(line, &item->argc, &item->argv)) return;
147 /* \ at the end of a line does not insert a \n */