aboutsummaryrefslogtreecommitdiffstats
path: root/libcmap_script_list.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libcmap_script_list.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libcmap_script_list.c b/libcmap_script_list.c
new file mode 100644
index 0000000..7464f5c
--- /dev/null
+++ b/libcmap_script_list.c
@@ -0,0 +1,11 @@
+/* See LICENSE file for copyright and license details. */
+#include "libcmap.h"
+
+
+static const struct libcmap_script list[] = {
+ {"Phony script", NULL, 0}
+};
+
+
+const struct libcmap_script *const libcmap_script_list = list;
+const size_t libcmap_script_list_size = sizeof(list) / sizeof(*list);