|
diff --git a/cgit.h b/cgit.h index 80c3902..2b28d63 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -142,16 +142,17 @@ struct cgit_query { |
142 | char *url; |
142 | char *url; |
143 | char *period; |
143 | char *period; |
144 | int ofs; |
144 | int ofs; |
145 | int nohead; |
145 | int nohead; |
146 | char *sort; |
146 | char *sort; |
147 | int showmsg; |
147 | int showmsg; |
148 | int ssdiff; |
148 | int ssdiff; |
149 | int show_all; |
149 | int show_all; |
| |
150 | int context; |
150 | char *vpath; |
151 | char *vpath; |
151 | }; |
152 | }; |
152 | |
153 | |
153 | struct cgit_config { |
154 | struct cgit_config { |
154 | char *agefile; |
155 | char *agefile; |
155 | char *cache_root; |
156 | char *cache_root; |
156 | char *clone_prefix; |
157 | char *clone_prefix; |
157 | char *css; |
158 | char *css; |
@@ -273,17 +274,17 @@ extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
273 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
274 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
274 | int flags, void *cb_data); |
275 | int flags, void *cb_data); |
275 | |
276 | |
276 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
277 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
277 | |
278 | |
278 | extern int cgit_diff_files(const unsigned char *old_sha1, |
279 | extern int cgit_diff_files(const unsigned char *old_sha1, |
279 | const unsigned char *new_sha1, |
280 | const unsigned char *new_sha1, |
280 | unsigned long *old_size, unsigned long *new_size, |
281 | unsigned long *old_size, unsigned long *new_size, |
281 | int *binary, linediff_fn fn); |
282 | int *binary, int context, linediff_fn fn); |
282 | |
283 | |
283 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
284 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
284 | const unsigned char *new_sha1, |
285 | const unsigned char *new_sha1, |
285 | filepair_fn fn, const char *prefix); |
286 | filepair_fn fn, const char *prefix); |
286 | |
287 | |
287 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
288 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
288 | |
289 | |
289 | extern char *fmt(const char *format,...); |
290 | extern char *fmt(const char *format,...); |
|