Blame


1 6509b181 2022-12-30 thomas {!
2 6509b181 2022-12-30 thomas #include <stdio.h>
3 6509b181 2022-12-30 thomas #include <stdlib.h>
4 6509b181 2022-12-30 thomas
5 6509b181 2022-12-30 thomas #include "tmpl.h"
6 6509b181 2022-12-30 thomas
7 6509b181 2022-12-30 thomas int base(struct template *, const char *);
8 6509b181 2022-12-30 thomas
9 6509b181 2022-12-30 thomas !}
10 6509b181 2022-12-30 thomas
11 6509b181 2022-12-30 thomas {{ define base(struct template *tp, const char *title) }}
12 6509b181 2022-12-30 thomas {{ printf "%.2s:\t%d\n", title, 42 }}
13 6509b181 2022-12-30 thomas {{ end }}