about summary refs log tree commit diff stats
path: root/cgit.h
diff options
context:
space:
mode:
authorJohn Keeping2013-04-07 14:40:50 +0100
committerJason A. Donenfeld2013-04-08 16:10:11 +0200
commitfd00d2f9d6088223f57006949dc6ce7c36316a79 (patch)
tree46092821a261964a35b36f0e22b924fdd144bf75 /cgit.h
parentMark char* fields in struct cgit_page as const (diff)
downloadcgit-fd00d2f9d6088223f57006949dc6ce7c36316a79.tar.gz
cgit-fd00d2f9d6088223f57006949dc6ce7c36316a79.zip
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 'cgit.h')
-rw-r--r--cgit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index 7581cc1..7619cbb 100644 --- a/cgit.h +++ b/cgit.h
@@ -327,6 +327,9 @@ extern void cgit_diff_commit(struct commit *commit, filepair_fn fn,
327__attribute__((format (printf,1,2))) 327__attribute__((format (printf,1,2)))
328extern char *fmt(const char *format,...); 328extern char *fmt(const char *format,...);
329 329
330__attribute__((format (printf,1,2)))
331extern char *fmtalloc(const char *format,...);
332
330extern struct commitinfo *cgit_parse_commit(struct commit *commit); 333extern struct commitinfo *cgit_parse_commit(struct commit *commit);
331extern struct taginfo *cgit_parse_tag(struct tag *tag); 334extern struct taginfo *cgit_parse_tag(struct tag *tag);
332extern void cgit_parse_url(const char *url); 335extern void cgit_parse_url(const char *url);