diff options
| author | Mattias Andrée <m@maandree.se> | 2025-12-20 06:49:30 +0100 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2025-12-20 06:49:30 +0100 |
| commit | 28f3247dbb786a42f0460a7aa88d558056a68144 (patch) | |
| tree | 16be29e366f0dd9b5a8499e0edb72d8ec780ad8d /libcmap_script_list.c | |
| download | libcmap-28f3247dbb786a42f0460a7aa88d558056a68144.tar.gz libcmap-28f3247dbb786a42f0460a7aa88d558056a68144.tar.bz2 libcmap-28f3247dbb786a42f0460a7aa88d558056a68144.tar.xz | |
First commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'libcmap_script_list.c')
| -rw-r--r-- | libcmap_script_list.c | 11 |
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); |
