timed tail for logfiles. Display loglines given a minimum date and/or a maximum date.
c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.c 229B

1234567891011121314
  1. #include "include/ttail.h"
  2. #include "include/ttail_init.h"
  3. int main(int argc, char **argv)
  4. {
  5. ttail_t *ttail;
  6. ttail = ttail_init(argc, argv);
  7. if(ttail_init_check(ttail) < 0)
  8. {
  9. ttail_free(ttail);
  10. return 1;
  11. }
  12. return 0;
  13. }