diff options
-rw-r--r-- | inotail.c | 7 | ||||
-rw-r--r-- | inotail.h | 11 |
2 files changed, 8 insertions, 10 deletions
@@ -41,13 +41,6 @@ #define PROGRAM_NAME "inotail" #define BUFFER_SIZE 4096 -#define IS_PIPELIKE(mode) \ - (S_ISFIFO(mode) || S_ISSOCK(mode)) - -/* (ino)tail works on these file types */ -#define IS_TAILABLE(mode) \ - (S_ISREG(mode) || IS_PIPELIKE(mode) || S_ISCHR(mode)) - /* Print header with filename before tailing the file? */ static char verbose = 0; @@ -18,12 +18,17 @@ struct file_struct { char *name; /* Name of file (or '-' for stdin) */ int fd; /* File descriptor (or -1 if file is not open */ off_t st_size; /* File size */ - - unsigned ignore; /* Wheter to ignore the file in further processing */ - + unsigned ignore; /* Whether to ignore the file in further processing */ int i_watch; /* Inotify watch associated with file_struct */ }; +#define IS_PIPELIKE(mode) \ + (S_ISFIFO(mode) || S_ISSOCK(mode)) + +/* inotail works on these file types */ +#define IS_TAILABLE(mode) \ + (S_ISREG(mode) || IS_PIPELIKE(mode) || S_ISCHR(mode)) + #ifdef DEBUG # define dprintf(fmt, args...) fprintf(stderr, fmt, ##args) #else |