summaryrefslogtreecommitdiffabout
path: root/cgit.h
authorJonathan Bastien-Filiatrault <joe@x2a.org>2007-10-26 22:09:06 (UTC)
committer Jonathan Bastien-Filiatrault <joe@x2a.org>2007-11-05 23:13:30 (UTC)
commit3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b (patch) (unidiff)
tree548671b6339e9a1a252ded4d534f11bfcd560043 /cgit.h
parent72ede12551af320b6d8eade853dbd2cd6f2222cc (diff)
downloadcgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.zip
cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.gz
cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.bz2
Add commit->msg_encoding, allocate msg dynamicly.
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-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
@@ -49,4 +49,9 @@
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);
@@ -91,4 +96,5 @@ struct commitinfo {
91 char *subject; 96 char *subject;
92 char *msg; 97 char *msg;
98 char *msg_encoding;
93}; 99};
94 100