File: common.h

package info (click to toggle)
inotify-tools 3.13-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,804 kB
  • ctags: 332
  • sloc: sh: 8,910; ansic: 3,459; makefile: 55
file content (16 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// kate: replace-tabs off; space-indent off;

void print_event_descriptions();
int isdir( char const * path );

typedef struct {
	char const ** watch_files;
	char const ** exclude_files;
} FileList;
FileList construct_path_list( int argc, char ** argv, char const * filename );

#define niceassert(cond,mesg) _niceassert((long)cond, __LINE__, __FILE__, \
                                          #cond, mesg)

void _niceassert( long cond, int line, char const * file, char const * condstr,
                  char const * mesg );