aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions.h
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2018-04-15 00:43:08 +0300
committergramanas <anastasis.gramm2@gmail.com>2018-04-15 00:43:08 +0300
commitbc25e14b448edb9f41260a23cf6567e6632db267 (patch)
tree71362a1c8d369f3d0080baee5f98edb3439f3735 /src/actions.h
parent0168c10023f0040ae2fa31a212eb6d2e411eefb3 (diff)
downloadck-bc25e14b448edb9f41260a23cf6567e6632db267.tar.gz
ck-bc25e14b448edb9f41260a23cf6567e6632db267.tar.bz2
ck-bc25e14b448edb9f41260a23cf6567e6632db267.zip
dummy init done
action parser conf parser db layer
Diffstat (limited to 'src/actions.h')
-rw-r--r--src/actions.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/actions.h b/src/actions.h
new file mode 100644
index 0000000..9fc0f45
--- /dev/null
+++ b/src/actions.h
@@ -0,0 +1,20 @@
+/* actions.h - Action parser for ck ----------------------------*- C -*-
+ *
+ * This file is part of ck, the config keeper
+ *
+ * ---------------------------------------------------------------------
+ *
+ *
+ * ------------------------------------------------------------------ */
+#ifndef ACTIONS_H
+#define ACTIONS_H
+
+#include "actionparser.h"
+#include "confparser.h"
+
+#define X(ACTION) \
+ extern int run_##ACTION(UserOpt *, Conf *);
+CK_ACTIONS
+#undef X
+
+#endif /* ACTIONS_H */