diff options
| author | Federico Angelilli <code@fedang.net> | 2024-09-08 14:42:22 +0200 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-09-08 14:42:22 +0200 |
| commit | feae7fb2bed5357a5e685063e3f6ff005bfc0bd5 (patch) | |
| tree | e45b8568ed14bc2cc50d6697439adf25752326df /src/blocks/text.c | |
| parent | 43238419974e599a84f17b5faa8fb52401bdfe90 (diff) | |
Add blocks schemes and time config
Diffstat (limited to 'src/blocks/text.c')
| -rw-r--r-- | src/blocks/text.c | 11 |
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, +}; |
