From feae7fb2bed5357a5e685063e3f6ff005bfc0bd5 Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Sun, 8 Sep 2024 14:42:22 +0200 Subject: Add blocks schemes and time config --- src/blocks/text.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/blocks/text.c (limited to 'src/blocks/text.c') diff --git a/src/blocks/text.c b/src/blocks/text.c new file mode 100644 index 0000000..0e5fc31 --- /dev/null +++ b/src/blocks/text.c @@ -0,0 +1,11 @@ +#include "scheme.h" + +const block_scheme_t block_text_scheme = { + .name = "text", + .block = { + .type = BLOCK_TEXT, + }, + .size = 0, + .entries = NULL, + .verify = NULL, +}; -- cgit v1.2.3