about summary refs log tree commit diff stats
path: root/ui-shared.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui-shared.h')
-rw-r--r--ui-shared.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui-shared.h b/ui-shared.h index 474e0c5..de08e1b 100644 --- a/ui-shared.h +++ b/ui-shared.h
@@ -1,11 +1,11 @@
1#ifndef UI_SHARED_H 1#ifndef UI_SHARED_H
2#define UI_SHARED_H 2#define UI_SHARED_H
3 3
4extern const char *cgit_httpscheme(); 4extern const char *cgit_httpscheme(void);
5extern char *cgit_hosturl(); 5extern char *cgit_hosturl(void);
6extern const char *cgit_rooturl(); 6extern const char *cgit_rooturl(void);
7extern char *cgit_currenturl(); 7extern char *cgit_currenturl(void);
8extern const char *cgit_loginurl(); 8extern const char *cgit_loginurl(void);
9extern char *cgit_repourl(const char *reponame); 9extern char *cgit_repourl(const char *reponame);
10extern char *cgit_fileurl(const char *reponame, const char *pagename, 10extern char *cgit_fileurl(const char *reponame, const char *pagename,
11 const char *filename, const char *query); 11 const char *filename, const char *query);
@@ -66,7 +66,7 @@ extern void cgit_print_age(time_t t, time_t max_relative, const char *format);
66extern void cgit_print_http_headers(void); 66extern void cgit_print_http_headers(void);
67extern void cgit_redirect(const char *url, bool permanent); 67extern void cgit_redirect(const char *url, bool permanent);
68extern void cgit_print_docstart(void); 68extern void cgit_print_docstart(void);
69extern void cgit_print_docend(); 69extern void cgit_print_docend(void);
70__attribute__((format (printf,3,4))) 70__attribute__((format (printf,3,4)))
71extern void cgit_print_error_page(int code, const char *msg, const char *fmt, ...); 71extern void cgit_print_error_page(int code, const char *msg, const char *fmt, ...);
72extern void cgit_print_pageheader(void); 72extern void cgit_print_pageheader(void);