X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/f77e2a8cfaf07b25ddedd57348a1d957b048bbf5..e9cbdf64632fbe64d6b0c4974ac947ef954938e7:/ui-shared.h diff --git a/ui-shared.h b/ui-shared.h index 474e0c5..b457c97 100644 --- a/ui-shared.h +++ b/ui-shared.h @@ -1,11 +1,11 @@ #ifndef UI_SHARED_H #define UI_SHARED_H -extern const char *cgit_httpscheme(); -extern char *cgit_hosturl(); -extern const char *cgit_rooturl(); -extern char *cgit_currenturl(); -extern const char *cgit_loginurl(); +extern const char *cgit_httpscheme(void); +extern char *cgit_hosturl(void); +extern const char *cgit_rooturl(void); +extern char *cgit_currenturl(void); +extern const char *cgit_loginurl(void); extern char *cgit_repourl(const char *reponame); extern char *cgit_fileurl(const char *reponame, const char *pagename, const char *filename, const char *query); @@ -61,12 +61,12 @@ __attribute__((format (printf,1,2))) extern void cgit_print_error(const char *fmt, ...); __attribute__((format (printf,1,0))) extern void cgit_vprint_error(const char *fmt, va_list ap); -extern void cgit_print_date(time_t secs, const char *format, int local_time); -extern void cgit_print_age(time_t t, time_t max_relative, const char *format); +extern const struct date_mode *cgit_date_mode(enum date_mode_type type); +extern void cgit_print_age(time_t t, int tz, time_t max_relative); extern void cgit_print_http_headers(void); extern void cgit_redirect(const char *url, bool permanent); extern void cgit_print_docstart(void); -extern void cgit_print_docend(); +extern void cgit_print_docend(void); __attribute__((format (printf,3,4))) extern void cgit_print_error_page(int code, const char *msg, const char *fmt, ...); extern void cgit_print_pageheader(void);