diff options
Diffstat (limited to 'watch_list.h')
-rw-r--r-- | watch_list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/watch_list.h b/watch_list.h index 5a695e6..bd428ab 100644 --- a/watch_list.h +++ b/watch_list.h @@ -37,6 +37,7 @@ typedef struct watch_list_struct watch_list_t; void watch_list_init(watch_list_t* list); void watch_list_clear(watch_list_t* list); int watch_list_add(watch_list_t* list, int watch_fd, const char* path); +void watch_list_rm(watch_list_t* list, const char* path); char* watch_list_find_path(watch_list_t* list, int watch_fd); int watch_list_find_fd(watch_list_t* list, const char* path); |