summaryrefslogtreecommitdiff
path: root/src/cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.h')
-rw-r--r--src/cli.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cli.h b/src/cli.h
new file mode 100644
index 0000000..ca42f76
--- /dev/null
+++ b/src/cli.h
@@ -0,0 +1,15 @@
+#ifndef _JH_CLI_CLI_H_
+#define _JH_CLI_CLI_H_
+
+#include <stdio.h>
+
+int JH_cli_open_socket
+(
+ FILE * s [const restrict static 1],
+ const char socket_name [const restrict static 1]
+);
+
+int JH_cli_is_running (void);
+int JH_cli_set_signal_handlers (void);
+
+#endif