aboutsummaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h
new file mode 100644
index 0000000..bd6c139
--- /dev/null
+++ b/src/options.h
@@ -0,0 +1,18 @@
+#ifndef POTD_OPTIONS_H
+#define POTD_OPTIONS_H 1
+
+typedef enum opt_name {
+ OPT_LOGFILE = 0, OPT_LOGLEVEL,
+
+ OPT_MAX
+} opt_name;
+
+
+int options_cmdline(int argc, char **argv);
+
+int getopt_used(opt_name on);
+
+char *
+getopt_str(opt_name on);
+
+#endif