feat: add simple inotify prototype

This commit is contained in:
2024-08-02 19:11:12 +02:00
parent 94a4ac27c5
commit 6c3ad9ffa5
10 changed files with 212 additions and 60 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef SCI_NOTIFY_H
#define SCI_NOTIFY_H
#include <sys/inotify.h>
typedef void(*notify_callback)(struct inotify_event* const);
// Start listening for changes to the provided file.
// Note that the `struct inotify_event*` provided is a managed pointer.
void listen_for_changes(const char* filename, notify_callback callback);
#endif