diff options
Diffstat (limited to 'lib/lib.c')
-rw-r--r-- | lib/lib.c | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -1207,3 +1207,24 @@ char *getgroupname(gid_t gid) return gr ? gr->gr_name : gnum; } +// Iterate over lines in file, calling function. Function can write 0 to +// the line pointer if they want to keep it, or 1 to terminate processing, +// otherwise line is freed. Passed file descriptor is closed at the end. +void do_lines(int fd, void (*call)(char **pline, long len)) +{ + FILE *fp = fd ? xfdopen(fd, "r") : stdin; + + for (;;) { + char *line = 0; + ssize_t len; + + len = getline(&line, (void *)&len, fp); + if (len > 0) { + call(&line, len); + if (line == (void *)1) break; + free(line); + } else break; + } + + if (fd) fclose(fp); +} |