aboutsummaryrefslogtreecommitdiff
path: root/src/hyde.c
diff options
context:
space:
mode:
authorDanny van Kooten <dannyvankooten@users.noreply.github.com>2020-03-12 15:07:09 +0100
committerDanny van Kooten <dannyvankooten@users.noreply.github.com>2020-03-12 15:07:09 +0100
commit791e03d8199fa1177f970f45a8a436912d229d1c (patch)
treebd24f5ad87bca8e932e9db8176d46a31d578c43c /src/hyde.c
parenta39e8c713e0a8ea9f2f8e455c1ce2b4d0c3f5115 (diff)
downloadunja-791e03d8199fa1177f970f45a8a436912d229d1c.tar.gz
unja-791e03d8199fa1177f970f45a8a436912d229d1c.zip
add vector type
Diffstat (limited to 'src/hyde.c')
-rw-r--r--src/hyde.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hyde.c b/src/hyde.c
index bab2513..350a518 100644
--- a/src/hyde.c
+++ b/src/hyde.c
@@ -2,6 +2,11 @@
#include <stdio.h>
#include <stdlib.h>
+struct post {
+ char title[64];
+ char tags[8][32];
+};
+
int main() {
char *input = read_file("index.tpl");