summaryrefslogtreecommitdiff
path: root/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'options.h')
-rw-r--r--options.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/options.h b/options.h
new file mode 100644
index 0000000..51249c1
--- /dev/null
+++ b/options.h
@@ -0,0 +1,12 @@
+#ifndef OPTIONS_H
+#define OPTIONS_H
+
+#include <glib.h>
+
+struct options {
+ gboolean daemonize;
+};
+
+void options_parse(int argc, char **argv, struct options *options);
+
+#endif