![Florian Achleitner](/assets/img/avatar_default.png)
The existing function only allows reading from a filename or from stdin. Allow passing of a FD and an additional FD for the back report pipe. This allows us to retrieve the name of the pipe in the caller. Signed-off-by: Florian Achleitner <florian.achleitner.2.6.31@gmail.com> Acked-by: David Michael Barr <b@rr-dav.id.au> Signed-off-by: Junio C Hamano <gitster@pobox.com>
11 lines
221 B
C
11 lines
221 B
C
#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);
|
|
void svndump_deinit(void);
|
|
void svndump_reset(void);
|
|
|
|
#endif
|