Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
archived/src/inotify.h
2011-03-02 15:50:16 +01:00

17 lines
250 B
C

#ifndef __INOTIFY_H
#define __INOTIFY_H
#include "event.h"
int inotify_init(void);
void inotify_exit(void);
int inotify_watch(const char *path);
int inotify_ignore(const char *path);
notify_event* inotify_read(void);
#endif /* __INOTIFY_H */