Blame


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