1
0
mirror of https://github.com/git/git.git synced 2024-10-01 21:11:24 +02:00
git/vcs-svn/svndump.h

11 lines
244 B
C
Raw Normal View History

#ifndef SVNDUMP_H_
#define SVNDUMP_H_
int svndump_init(const char *filename);
int svndump_init_fd(int in_fd, int back_fd);
void svndump_read(const char *url, const char *local_ref);
void svndump_deinit(void);
void svndump_reset(void);
#endif