aboutsummaryrefslogtreecommitdiffstats
path: root/src/actionhelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/actionhelper.h')
-rw-r--r--src/actionhelper.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/actionhelper.h b/src/actionhelper.h
new file mode 100644
index 0000000..75ad0a7
--- /dev/null
+++ b/src/actionhelper.h
@@ -0,0 +1,10 @@
+#include "ckutil.h"
+
+typedef enum edit_opt_return_code edit_rc;
+enum edit_opt_return_code {
+ ERC_OK,
+ ERC_SUGGESTIONS,
+ ERC_ERR
+};
+
+extern edit_rc edit_get_config_or_suggestions(const int argc, char **argv, char *ret);