aboutsummaryrefslogtreecommitdiff
path: root/src/file_watch.h
blob: c249cd2bf9cfcf12c012e2fdcfc8b19cac62a8ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include <stdbool.h>

#include <ev.h>

typedef void (*file_watch_cb_t)(void *);

void *file_watch_init(EV_P);
bool file_watch_add(void *, const char *, file_watch_cb_t, void *);
void file_watch_destroy(EV_P_ void *);