aboutsummaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorGravatar John Keeping <john@keeping.me.uk>2013-04-07 22:40:50 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2013-04-08 23:10:11 (JST)
commitfd00d2f9d6088223f57006949dc6ce7c36316a79 (patch)
tree46092821a261964a35b36f0e22b924fdd144bf75 /html.h
parent57d09bf448990b3a67436e928807e854e491756f (diff)
downloadcgit-fd00d2f9d6088223f57006949dc6ce7c36316a79.zip
cgit-fd00d2f9d6088223f57006949dc6ce7c36316a79.tar.gz
html.c: add various strbuf and varadic helpers
This adds the fmtalloc helper, html_txtf, html_vtxtf, and html_attrf. These takes a printf style format string like htmlf but escapes the resulting string. The html_vtxtf variant takes a va_list whereas html_txtf is variadic. Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'html.h')
-rw-r--r--html.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/html.h b/html.h
index bb36f37..be3b311 100644
--- a/html.h
+++ b/html.h
@@ -1,7 +1,7 @@
1#ifndef HTML_H 1#ifndef HTML_H
2#define HTML_H 2#define HTML_H
3 3
4#include <stddef.h> 4#include "cgit.h"
5 5
6extern void html_raw(const char *txt, size_t size); 6extern void html_raw(const char *txt, size_t size);
7extern void html(const char *txt); 7extern void html(const char *txt);
@@ -9,6 +9,15 @@ extern void html(const char *txt);
9__attribute__((format (printf,1,2))) 9__attribute__((format (printf,1,2)))
10extern void htmlf(const char *format,...); 10extern void htmlf(const char *format,...);
11 11
12__attribute__((format (printf,1,2)))
13extern void html_txtf(const char *format,...);
14
15__attribute__((format (printf,1,0)))
16extern void html_vtxtf(const char *format, va_list ap);
17
18__attribute__((format (printf,1,2)))
19extern void html_attrf(const char *format,...);
20
12extern void html_status(int code, const char *msg, int more_headers); 21extern void html_status(int code, const char *msg, int more_headers);
13extern void html_txt(const char *txt); 22extern void html_txt(const char *txt);
14extern void html_ntxt(int len, const char *txt); 23extern void html_ntxt(int len, const char *txt);