Blame


1 014c66b6 2023-06-25 op /*
2 014c66b6 2023-06-25 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 014c66b6 2023-06-25 op *
4 014c66b6 2023-06-25 op * Permission to use, copy, modify, and distribute this software for any
5 014c66b6 2023-06-25 op * purpose with or without fee is hereby granted, provided that the above
6 014c66b6 2023-06-25 op * copyright notice and this permission notice appear in all copies.
7 014c66b6 2023-06-25 op *
8 014c66b6 2023-06-25 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 014c66b6 2023-06-25 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 014c66b6 2023-06-25 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 014c66b6 2023-06-25 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 014c66b6 2023-06-25 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 014c66b6 2023-06-25 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 014c66b6 2023-06-25 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 014c66b6 2023-06-25 op */
16 014c66b6 2023-06-25 op
17 014c66b6 2023-06-25 op #ifndef TMPL_H
18 014c66b6 2023-06-25 op #define TMPL_H
19 014c66b6 2023-06-25 op
20 014c66b6 2023-06-25 op struct template;
21 014c66b6 2023-06-25 op
22 014c66b6 2023-06-25 op typedef int (*tmpl_puts)(struct template *, const char *);
23 014c66b6 2023-06-25 op typedef int (*tmpl_putc)(struct template *, int);
24 014c66b6 2023-06-25 op
25 014c66b6 2023-06-25 op struct template {
26 014c66b6 2023-06-25 op void *tp_arg;
27 014c66b6 2023-06-25 op char *tp_tmp;
28 014c66b6 2023-06-25 op tmpl_puts tp_escape;
29 014c66b6 2023-06-25 op tmpl_puts tp_puts;
30 014c66b6 2023-06-25 op tmpl_putc tp_putc;
31 014c66b6 2023-06-25 op };
32 014c66b6 2023-06-25 op
33 014c66b6 2023-06-25 op int tp_urlescape(struct template *, const char *);
34 014c66b6 2023-06-25 op int tp_htmlescape(struct template *, const char *);
35 014c66b6 2023-06-25 op
36 014c66b6 2023-06-25 op struct template *template(void *, tmpl_puts, tmpl_putc);
37 014c66b6 2023-06-25 op void template_free(struct template *);
38 014c66b6 2023-06-25 op
39 014c66b6 2023-06-25 op #endif