Blame


1 2c02675e 2022-12-14 op /*
2 b2b17923 2022-12-17 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 2c02675e 2022-12-14 op *
4 2c02675e 2022-12-14 op * Permission to use, copy, modify, and distribute this software for any
5 2c02675e 2022-12-14 op * purpose with or without fee is hereby granted, provided that the above
6 2c02675e 2022-12-14 op * copyright notice and this permission notice appear in all copies.
7 2c02675e 2022-12-14 op *
8 2c02675e 2022-12-14 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 2c02675e 2022-12-14 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 2c02675e 2022-12-14 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 2c02675e 2022-12-14 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 2c02675e 2022-12-14 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 2c02675e 2022-12-14 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 2c02675e 2022-12-14 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 2c02675e 2022-12-14 op */
16 2c02675e 2022-12-14 op
17 2c02675e 2022-12-14 op #include <err.h>
18 2c02675e 2022-12-14 op #include <stdio.h>
19 2c02675e 2022-12-14 op #include <stdlib.h>
20 2c02675e 2022-12-14 op
21 2c02675e 2022-12-14 op #include "tmpl.h"
22 2c02675e 2022-12-14 op
23 2c02675e 2022-12-14 op int base(struct template *, const char *title);
24 62eab86e 2023-09-13 op int my_write(void *, const void *, size_t);
25 2c02675e 2022-12-14 op
26 2c02675e 2022-12-14 op int
27 62eab86e 2023-09-13 op my_write(void *arg, const void *s, size_t len)
28 2c02675e 2022-12-14 op {
29 62eab86e 2023-09-13 op FILE *fp = arg;
30 2c02675e 2022-12-14 op
31 62eab86e 2023-09-13 op if (fwrite(s, 1, len, fp) < 0)
32 2c02675e 2022-12-14 op return (-1);
33 2c02675e 2022-12-14 op
34 2c02675e 2022-12-14 op return (0);
35 2c02675e 2022-12-14 op }
36 2c02675e 2022-12-14 op
37 2c02675e 2022-12-14 op int
38 2c02675e 2022-12-14 op main(int argc, char **argv)
39 2c02675e 2022-12-14 op {
40 62eab86e 2023-09-13 op struct template *tp;
41 62eab86e 2023-09-13 op char buf[3];
42 62eab86e 2023-09-13 op /* use a ridiculously small buffer in regress */
43 2c02675e 2022-12-14 op
44 62eab86e 2023-09-13 op if ((tp = template(stdout, my_write, buf, sizeof(buf))) == NULL)
45 2c02675e 2022-12-14 op err(1, "template");
46 2c02675e 2022-12-14 op
47 62eab86e 2023-09-13 op if (base(tp, " *hello* ") == -1 ||
48 62eab86e 2023-09-13 op template_flush(tp) == -1)
49 2c02675e 2022-12-14 op return (1);
50 2c02675e 2022-12-14 op puts("");
51 2c02675e 2022-12-14 op
52 62eab86e 2023-09-13 op if (base(tp, "<hello>") == -1 ||
53 62eab86e 2023-09-13 op template_flush(tp) == -1)
54 2c02675e 2022-12-14 op return (1);
55 2c02675e 2022-12-14 op puts("");
56 2c02675e 2022-12-14 op
57 0ec0e499 2023-09-12 op template_free(tp);
58 2c02675e 2022-12-14 op return (0);
59 2c02675e 2022-12-14 op }