Lines Matching defs:line
17 * command line tool and file parser was kindly sponsored by
140 static int parse_line(struct context *context, char *line)
146 while (*line) {
147 while (*line && (*line == ' ' || *line == '\t' ||
148 *line == '\n'))
149 line++;
150 c = *line;
154 start = ++line;
155 while (*line && *line != c)
156 line++;
157 if (*line) {
158 *line = '\0';
159 line++;
162 start = line;
163 while (*line && *line != ' ' && *line != '\t' &&
164 *line != '\n')
165 line++;
166 if (*line) {
167 *line = '\0';
168 line++;
491 /* parse and execute any command line commands */
528 fprintf(stderr, "%s: unable to parse line\n",