aboutsummaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h
index 8ba6016..1b3fe5b 100644
--- a/src/options.h
+++ b/src/options.h
@@ -1,6 +1,8 @@
#ifndef POTD_OPTIONS_H
#define POTD_OPTIONS_H 1
+struct opt_list;
+
typedef enum opt_name {
OPT_LOGTOFILE = 0, OPT_LOGFILE, OPT_LOGLEVEL,
OPT_DAEMON,
@@ -17,4 +19,7 @@ int getopt_used(opt_name on);
char *
getopt_str(opt_name on);
+char *
+getopt_strlist(opt_name on, struct opt_list **ol);
+
#endif