Lines Matching +defs:end +defs:line
43 /* Read options from profile files and from the command line. */
130 char line[BUFSIZ];
136 while ((fgets(line, sizeof(line), file)) != NULL) {
137 /* Only keep the first word of the line. */
138 line[strcspn(line, " \t\n\r")] = '\0';
139 register_typename(line);
161 char *end;
162 opt.case_indent = (float)strtod(arg_end, &end);
163 if (*end != '\0')
242 char *end;
243 long num = strtol(arg_arg, &end, 10);
244 if (*end != '\0')