2018-10-18 00:13:26 +02:00
|
|
|
#ifndef SVNDUMP_H
|
|
|
|
#define SVNDUMP_H
|
2010-08-10 00:55:00 +02:00
|
|
|
|
2010-11-20 01:46:06 +01:00
|
|
|
int svndump_init(const char *filename);
|
2012-09-19 17:21:17 +02:00
|
|
|
int svndump_init_fd(int in_fd, int back_fd);
|
2012-09-19 17:21:27 +02:00
|
|
|
void svndump_read(const char *url, const char *local_ref, const char *notes_ref);
|
2010-08-10 00:55:00 +02:00
|
|
|
void svndump_deinit(void);
|
|
|
|
void svndump_reset(void);
|
|
|
|
|
|
|
|
#endif
|