Lines Matching defs:line
49 char line[81];
60 while (fgets(line, sizeof(line), stdin) != NULL) {
61 line[strcspn(line, "\n")] = '\0';
63 if (strcmp(line, "*") == 0)
66 if (regexec(&data_re, line, 18, m, 0) == 0) {
67 noff = (off_t)strtoimax(line + m[1].rm_so, NULL, 16);
70 line + m[2 + i].rm_so, NULL, 16);
72 } else if (regexec(&end_re, line, 2, m, 0) == 0) {
73 noff = (off_t)strtoimax(line + m[1].rm_so, NULL, 16);
81 err(1, "invalid line '%s'", line);