aboutsummaryrefslogtreecommitdiff
path: root/src/blocks/text.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/blocks/text.c')
-rw-r--r--src/blocks/text.c11
1 files changed, 11 insertions, 0 deletions
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,
+};