/* See LICENSE file for copyright and license details. */ #include #include #include #include #include "text.h" #include "util.h" static void dropinit(FILE *, const char *, long); static void taketail(FILE *, const char *, long); static void usage(void) { eprintf("usage: %s [-n lines] [file]\n", argv0); } int main(int argc, char *argv[]) { long n = 10; FILE *fp; void (*tail)(FILE *, const char *, long) = taketail; ARGBEGIN { case 'n': n = abs(estrtol(EARGF(usage()), 0)); if(optarg[0] == '+') tail = dropinit; break; default: usage(); } ARGEND; if(argc == 0) { tail(stdin, "", n); } else if(argc == 1) { if(!(fp = fopen(argv[0], "r"))) eprintf("fopen %s:", argv[0]); tail(fp, argv[0], n); fclose(fp); } else usage(); return 0; } void dropinit(FILE *fp, const char *str, long n) { char buf[BUFSIZ]; long i = 0; while(i < n && fgets(buf, sizeof buf, fp)) if(buf[strlen(buf)-1] == '\n') i++; concat(fp, str, stdout, ""); } void taketail(FILE *fp, const char *str, long n) { char **ring; long i, j; size_t *size = NULL; if(!(ring = calloc(n, sizeof *ring)) || !(size = calloc(n, sizeof *size))) eprintf("calloc:"); for(i = j = 0; afgets(&ring[i], &size[i], fp); i = j = (i+1)%n) ; if(ferror(fp)) eprintf("%s: read error:", str); do { if(ring[j]) { fputs(ring[j], stdout); free(ring[j]); } } while((j = (j+1)%n) != i); free(ring); free(size); }