aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.h
diff options
context:
space:
mode:
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 163f355..6c7a941 100644
--- a/cgit.h
+++ b/cgit.h
@@ -48,6 +48,11 @@
48#define TM_MONTH (TM_YEAR / 12.0) 48#define TM_MONTH (TM_YEAR / 12.0)
49 49
50 50
51/*
52 * Default encoding
53 */
54#define PAGE_ENCODING "UTF-8"
55
51typedef void (*configfn)(const char *name, const char *value); 56typedef void (*configfn)(const char *name, const char *value);
52typedef void (*filepair_fn)(struct diff_filepair *pair); 57typedef void (*filepair_fn)(struct diff_filepair *pair);
53typedef void (*linediff_fn)(char *line, int len); 58typedef void (*linediff_fn)(char *line, int len);
@@ -90,6 +95,7 @@ struct commitinfo {
90 unsigned long committer_date; 95 unsigned long committer_date;
91 char *subject; 96 char *subject;
92 char *msg; 97 char *msg;
98 char *msg_encoding;
93}; 99};
94 100
95struct taginfo { 101struct taginfo {