From b19e7a6a88355d32501b48a0b3f6b7f56c463b2a Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sat, 1 Jul 2006 16:56:14 +0200 Subject: Cleanup --- inotail.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'inotail.h') diff --git a/inotail.h b/inotail.h index 226c1ca..89ff400 100644 --- a/inotail.h +++ b/inotail.h @@ -2,12 +2,14 @@ #define _INOTAIL_H #include -#include #include /* Number of items to tail. */ #define DEFAULT_N_LINES 10 +/* tail modes */ +enum { M_LINES, M_BYTES }; + /* Every tailed file is represented as a file_struct */ struct file_struct { char *name; /* Name of file (or '-' for stdin) */ @@ -15,9 +17,10 @@ struct file_struct { int ignore:1; /* Ignore file? */ off_t st_size; /* File size */ - int i_watch; /* Inotify watch associated with file_struct */ + int i_watch; /* Inotify watch associated with file_struct */ }; +/* struct option const long_options[] = { {"lines", required_argument, NULL, 'n'}, {"quiet", no_argument, NULL, 'q'}, @@ -27,6 +30,7 @@ struct option const long_options[] = { {"version", no_argument, NULL, 'V'}, {NULL, 0, NULL, 0} }; +*/ #ifdef DEBUG #define dprintf(fmt, args...) fprintf(stderr, fmt, ##args) -- cgit v1.2.3-54-g00ecf