vcs-svn: Read the preimage while applying deltas
[svn-fe.git] / svn-fe.c
blob54ee3ed0af4c2c6a3a3a80bf15417ff761332715
1 /*
2 * Parse and rearrange a svnadmin dump.
3 * Create the dump with:
4 * svnadmin dump --incremental -r<startrev>:<endrev> <repository> >outfile
6 * Licensed under a two-clause BSD-style license.
7 * See LICENSE for details.
8 */
10 #include <stdlib.h>
11 #include "svndump.h"
13 int main(int argc, char **argv)
15 svndump_init(NULL);
16 svndump_read((argc > 1) ? argv[1] : NULL);
17 svndump_reset();
18 return 0;