diff options
author | Tobias Klauser <tklauser@xenon.tklauser.home> | 2006-07-01 16:56:14 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2006-07-01 16:56:14 +0200 |
commit | b19e7a6a88355d32501b48a0b3f6b7f56c463b2a (patch) | |
tree | dcb927a6ef4dc85312f2fc88de22255c8df5db7a | |
parent | d8cb881f04be06d0427a4956ff85311922cc5820 (diff) |
Cleanup
-rw-r--r-- | inotail.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,12 +2,14 @@ #define _INOTAIL_H #include <limits.h> -#include <getopt.h> #include <stdlib.h> /* 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) |