1int
2inotify_insert_file(char * name, const char * path);
3
4int
5inotify_insert_directory(int fd, char *name, const char * path);
6
7int
8inotify_remove_file(const char * path);
9
10int
11inotify_remove_directory(int fd, const char * path);
12
13#ifdef HAVE_INOTIFY
14void *
15start_inotify();
16#endif
17