summaryrefslogtreecommitdiffstats
path: root/src/ipc/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc/client.h')
-rw-r--r--src/ipc/client.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ipc/client.h b/src/ipc/client.h
new file mode 100644
index 0000000..a5936a6
--- /dev/null
+++ b/src/ipc/client.h
@@ -0,0 +1,9 @@
+#ifndef CLIENT_H
+#define CLIENT_H
+
+struct client *client_create(int fd);
+void client_destroy(struct client **client);
+
+void clients_destroy_all(void);
+
+#endif