]> git.ipfire.org Git - thirdparty/git.git/blob - vcs-svn/fast_export.h
Merge branch 'db/length-as-hash' into svn-fe
[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
6 void fast_export_delete(uint32_t depth, uint32_t *path);
7 void fast_export_modify(uint32_t depth, uint32_t *path, uint32_t mode,
8 uint32_t mark);
9 void fast_export_commit(uint32_t revision, const char *author, char *log,
10 const char *uuid, const char *url,
11 unsigned long timestamp);
12 void fast_export_blob(uint32_t mode, uint32_t mark, uint32_t len,
13 struct line_buffer *input);
14
15 #endif