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.

options.h 314B

123456789101112131415161718
  1. #ifndef _ttail_options_h__
  2. #define _ttail_options_h__
  3. #include <stdio.h>
  4. struct _ttail_options_s
  5. {
  6. ///<! NULL terminated format list
  7. char **fmt_list;
  8. };
  9. typedef struct _ttail_options_s ttail_options;
  10. ttail_options *ttail_options_init(int argc, char **argv);
  11. void ttail_options_free(ttail_options*);
  12. #endif