From 80a71e08f368bde5add474dd7d9d497ecd835532 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 20 Jun 2007 15:21:47 +0200 Subject: New upstream release --- inotail.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'inotail.h') diff --git a/inotail.h b/inotail.h index 4c57867..f7c1406 100644 --- a/inotail.h +++ b/inotail.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2006, Tobias Klauser + * Copyright (C) 2005-2007, Tobias Klauser * * Licensed under the terms of the GNU General Public License; version 2 or later. */ @@ -7,6 +7,8 @@ #ifndef _INOTAIL_H #define _INOTAIL_H +#include + /* Number of items to tail. */ #define DEFAULT_N_LINES 10 @@ -18,6 +20,7 @@ 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 */ + blksize_t st_blksize; /* Blocksize for filesystem I/O */ unsigned ignore; /* Whether to ignore the file in further processing */ int i_watch; /* Inotify watch associated with file_struct */ }; @@ -29,6 +32,8 @@ struct file_struct { #define IS_TAILABLE(mode) \ (S_ISREG(mode) || IS_PIPELIKE(mode) || S_ISCHR(mode)) +#define is_digit(c) ((c) >= '0' && (c) <= '9') + #ifdef DEBUG # define dprintf(fmt, args...) fprintf(stderr, fmt, ##args) #else -- cgit v1.2.3-54-g00ecf