]> git.ipfire.org Git - thirdparty/git.git/blob - vcs-svn/fast_export.h
Merge branch 'kk/maint-prefix-in-config-mak'
[thirdparty/git.git] / vcs-svn / fast_export.h
1 #ifndef FAST_EXPORT_H_
2 #define FAST_EXPORT_H_
3
4 #include "line_buffer.h"
5 struct strbuf;
6
7 void fast_export_delete(uint32_t depth, uint32_t *path);
8 void fast_export_modify(uint32_t depth, uint32_t *path, uint32_t mode,
9 uint32_t mark);
10 void fast_export_commit(uint32_t revision, const char *author,
11 const struct strbuf *log, const char *uuid,
12 const char *url, unsigned long timestamp);
13 void fast_export_blob(uint32_t mode, uint32_t mark, uint32_t len,
14 struct line_buffer *input);
15
16 #endif