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.

fmt_regex.h 364B

1234567891011121314151617181920
  1. #include "config.h"
  2. #ifdef TTAIL_FMT_REGEX
  3. #ifndef _ttail_fmt_regex_h__
  4. #define _ttail_fmt_regex_h__
  5. #include <stdlib.h>
  6. #include <stdio.h>
  7. #include <errno.h>
  8. #include <regex.h>
  9. #include <sys/types.h>
  10. #include "dateformats.h"
  11. #include "options.h"
  12. #define TTAIL_FMT_REGEX_NAME "regex"
  13. ttail_datefmt* ttail_fmt_regex_init(ttail_options* options);
  14. #endif
  15. #endif