diff options
author | Lars Hjemli | 2007-05-08 22:40:59 +0200 |
---|---|---|
committer | Lars Hjemli | 2007-05-08 23:38:49 +0200 |
commit | 61c3ca978c586c673aec618cb94210657278dda8 (patch) | |
tree | 7011987769e65ad0e7aa8b79f648357e9cd88c30 /cgit.h | |
parent | 66cacd053ba900c8eb3b7962027370c84a97f990 (diff) | |
download | cgit-61c3ca978c586c673aec618cb94210657278dda8.tar.gz cgit-61c3ca978c586c673aec618cb94210657278dda8.tar.bz2 cgit-61c3ca978c586c673aec618cb94210657278dda8.zip |
Update to libgit 1.5.2-rc2
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -1,10 +1,22 @@ | |||
1 | #ifndef CGIT_H | 1 | #ifndef CGIT_H |
2 | #define CGIT_H | 2 | #define CGIT_H |
3 | 3 | ||
4 | #include "git.h" | 4 | |
5 | #include <openssl/sha.h> | 5 | #include <git-compat-util.h> |
6 | #include <ctype.h> | 6 | #include <cache.h> |
7 | #include <sched.h> | 7 | #include <grep.h> |
8 | #include <object.h> | ||
9 | #include <tree.h> | ||
10 | #include <commit.h> | ||
11 | #include <tag.h> | ||
12 | #include <diff.h> | ||
13 | #include <diffcore.h> | ||
14 | #include <refs.h> | ||
15 | #include <revision.h> | ||
16 | #include <log-tree.h> | ||
17 | #include <archive.h> | ||
18 | #include <xdiff/xdiff.h> | ||
19 | |||
8 | 20 | ||
9 | typedef void (*configfn)(const char *name, const char *value); | 21 | typedef void (*configfn)(const char *name, const char *value); |
10 | 22 | ||