summaryrefslogtreecommitdiff
path: root/src/common.h
blob: 050e7ddb7fe2a203da40316d095bb8927f65e463 (plain)
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 );