diff options
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h new file mode 100644 index 0000000..19f7ba7 --- /dev/null +++ b/cgit.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef CGIT_H | ||
2 | #define CGIT_H | ||
3 | |||
4 | #include "git.h" | ||
5 | #include <openssl/sha.h> | ||
6 | |||
7 | extern char *fmt(const char *format,...); | ||
8 | |||
9 | extern void html(const char *txt); | ||
10 | extern void htmlf(const char *format,...); | ||
11 | extern void html_txt(char *txt); | ||
12 | extern void html_attr(char *txt); | ||
13 | |||
14 | extern void html_link_open(char *url, char *title, char *class); | ||
15 | extern void html_link_close(void); | ||
16 | |||
17 | typedef void (*configfn)(const char *name, const char *value); | ||
18 | |||
19 | extern int cgit_read_config(const char *filename, configfn fn); | ||
20 | |||
21 | #endif /* CGIT_H */ | ||