From 28f3247dbb786a42f0460a7aa88d558056a68144 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 20 Dec 2025 06:49:30 +0100 Subject: First commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libcmap_script_list.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libcmap_script_list.c (limited to 'libcmap_script_list.c') 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); -- cgit v1.3.1