summaryrefslogtreecommitdiff
path: root/inotail.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@xenon.tklauser.home>2006-07-01 16:56:14 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2006-07-01 16:56:14 +0200
commitb19e7a6a88355d32501b48a0b3f6b7f56c463b2a (patch)
treedcb927a6ef4dc85312f2fc88de22255c8df5db7a /inotail.h
parentd8cb881f04be06d0427a4956ff85311922cc5820 (diff)
Cleanup
Diffstat (limited to 'inotail.h')
-rw-r--r--inotail.h8
1 files changed, 6 insertions, 2 deletions
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 <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)