diff options
-rw-r--r-- | ui-diff.h | 2 | ||||
-rw-r--r-- | ui-refs.h | 2 | ||||
-rw-r--r-- | ui-repolist.h | 4 | ||||
-rw-r--r-- | ui-shared.h | 12 | ||||
-rw-r--r-- | ui-ssdiff.h | 8 | ||||
-rw-r--r-- | ui-summary.h | 2 |
6 files changed, 15 insertions, 15 deletions
@@ -1,7 +1,7 @@ | |||
1 | #ifndef UI_DIFF_H | 1 | #ifndef UI_DIFF_H |
2 | #define UI_DIFF_H | 2 | #define UI_DIFF_H |
3 | 3 | ||
4 | extern void cgit_print_diff_ctrls(); | 4 | extern void cgit_print_diff_ctrls(void); |
5 | 5 | ||
6 | extern void cgit_print_diff(const char *new_hex, const char *old_hex, | 6 | extern void cgit_print_diff(const char *new_hex, const char *old_hex, |
7 | const char *prefix, int show_ctrls, int raw); | 7 | const char *prefix, int show_ctrls, int raw); |
@@ -3,6 +3,6 @@ | |||
3 | 3 | ||
4 | extern void cgit_print_branches(int maxcount); | 4 | extern void cgit_print_branches(int maxcount); |
5 | extern void cgit_print_tags(int maxcount); | 5 | extern void cgit_print_tags(int maxcount); |
6 | extern void cgit_print_refs(); | 6 | extern void cgit_print_refs(void); |
7 | 7 | ||
8 | #endif /* UI_REFS_H */ | 8 | #endif /* UI_REFS_H */ |
diff --git a/ui-repolist.h b/ui-repolist.h index 5b1e542..1b6b322 100644 --- a/ui-repolist.h +++ b/ui-repolist.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef UI_REPOLIST_H | 1 | #ifndef UI_REPOLIST_H |
2 | #define UI_REPOLIST_H | 2 | #define UI_REPOLIST_H |
3 | 3 | ||
4 | extern void cgit_print_repolist(); | 4 | extern void cgit_print_repolist(void); |
5 | extern void cgit_print_site_readme(); | 5 | extern void cgit_print_site_readme(void); |
6 | 6 | ||
7 | #endif /* UI_REPOLIST_H */ | 7 | #endif /* UI_REPOLIST_H */ |
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 | ||
4 | extern const char *cgit_httpscheme(); | 4 | extern const char *cgit_httpscheme(void); |
5 | extern char *cgit_hosturl(); | 5 | extern char *cgit_hosturl(void); |
6 | extern const char *cgit_rooturl(); | 6 | extern const char *cgit_rooturl(void); |
7 | extern char *cgit_currenturl(); | 7 | extern char *cgit_currenturl(void); |
8 | extern const char *cgit_loginurl(); | 8 | extern const char *cgit_loginurl(void); |
9 | extern char *cgit_repourl(const char *reponame); | 9 | extern char *cgit_repourl(const char *reponame); |
10 | extern char *cgit_fileurl(const char *reponame, const char *pagename, | 10 | extern 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); | |||
66 | extern void cgit_print_http_headers(void); | 66 | extern void cgit_print_http_headers(void); |
67 | extern void cgit_redirect(const char *url, bool permanent); | 67 | extern void cgit_redirect(const char *url, bool permanent); |
68 | extern void cgit_print_docstart(void); | 68 | extern void cgit_print_docstart(void); |
69 | extern void cgit_print_docend(); | 69 | extern void cgit_print_docend(void); |
70 | __attribute__((format (printf,3,4))) | 70 | __attribute__((format (printf,3,4))) |
71 | extern void cgit_print_error_page(int code, const char *msg, const char *fmt, ...); | 71 | extern void cgit_print_error_page(int code, const char *msg, const char *fmt, ...); |
72 | extern void cgit_print_pageheader(void); | 72 | extern void cgit_print_pageheader(void); |
diff --git a/ui-ssdiff.h b/ui-ssdiff.h index 88627e2..11f2714 100644 --- a/ui-ssdiff.h +++ b/ui-ssdiff.h | |||
@@ -13,13 +13,13 @@ | |||
13 | #endif | 13 | #endif |
14 | #define MAX_SSDIFF_SIZE ((MAX_SSDIFF_M) * (MAX_SSDIFF_N)) | 14 | #define MAX_SSDIFF_SIZE ((MAX_SSDIFF_M) * (MAX_SSDIFF_N)) |
15 | 15 | ||
16 | extern void cgit_ssdiff_print_deferred_lines(); | 16 | extern void cgit_ssdiff_print_deferred_lines(void); |
17 | 17 | ||
18 | extern void cgit_ssdiff_line_cb(char *line, int len); | 18 | extern void cgit_ssdiff_line_cb(char *line, int len); |
19 | 19 | ||
20 | extern void cgit_ssdiff_header_begin(); | 20 | extern void cgit_ssdiff_header_begin(void); |
21 | extern void cgit_ssdiff_header_end(); | 21 | extern void cgit_ssdiff_header_end(void); |
22 | 22 | ||
23 | extern void cgit_ssdiff_footer(); | 23 | extern void cgit_ssdiff_footer(void); |
24 | 24 | ||
25 | #endif /* UI_SSDIFF_H */ | 25 | #endif /* UI_SSDIFF_H */ |
diff --git a/ui-summary.h b/ui-summary.h index c01f560..0896650 100644 --- a/ui-summary.h +++ b/ui-summary.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef UI_SUMMARY_H | 1 | #ifndef UI_SUMMARY_H |
2 | #define UI_SUMMARY_H | 2 | #define UI_SUMMARY_H |
3 | 3 | ||
4 | extern void cgit_print_summary(); | 4 | extern void cgit_print_summary(void); |
5 | extern void cgit_print_repo_readme(char *path); | 5 | extern void cgit_print_repo_readme(char *path); |
6 | 6 | ||
7 | #endif /* UI_SUMMARY_H */ | 7 | #endif /* UI_SUMMARY_H */ |