]>
Commit | Line | Data |
---|---|---|
c0e6c23d DB |
1 | #ifndef FAST_EXPORT_H_ |
2 | #define FAST_EXPORT_H_ | |
3 | ||
e5e45ca1 | 4 | #include "line_buffer.h" |
195b7ca6 | 5 | struct strbuf; |
e5e45ca1 | 6 | |
c0e6c23d DB |
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); | |
195b7ca6 JN |
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); | |
e5e45ca1 JN |
13 | void fast_export_blob(uint32_t mode, uint32_t mark, uint32_t len, |
14 | struct line_buffer *input); | |
c0e6c23d DB |
15 | |
16 | #endif |