diff options
author | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-03-12 14:45:48 +0100 |
---|---|---|
committer | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-03-12 14:45:48 +0100 |
commit | a39e8c713e0a8ea9f2f8e455c1ce2b4d0c3f5115 (patch) | |
tree | 39f247b5a7e064d3b1490ff2da6ad1233c1d7e0c /src/template.h | |
parent | 616ff505f666d4d162e5d2d8c0238f8af6f79c40 (diff) | |
download | unja-a39e8c713e0a8ea9f2f8e455c1ce2b4d0c3f5115.tar.gz unja-a39e8c713e0a8ea9f2f8e455c1ce2b4d0c3f5115.zip |
evaluate for blocks correctly
Diffstat (limited to 'src/template.h')
-rw-r--r-- | src/template.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/template.h b/src/template.h index 9174ad8..b4d46b3 100644 --- a/src/template.h +++ b/src/template.h @@ -6,4 +6,10 @@ char *template(char *tmpl, struct hashmap *ctx); struct post { char title[64]; char tags[8][32]; +}; + +struct list { + void **values; + int size; + int cap; };
\ No newline at end of file |