blob: a2677b03e0ff8347d13a5d56f4fa2e1aba18824a [file] [log] [blame]
Jonathan Niedere6051642010-07-15 18:25:39 +02001/*
2 * This file is in the public domain.
3 * You may freely use, modify, distribute, and relicense it.
4 */
5
6#include <stdlib.h>
Ramkumar Ramachandra199f5492010-07-29 11:06:19 +05307#include "svndump.h"
Jonathan Niedere6051642010-07-15 18:25:39 +02008
9int main(int argc, char **argv)
10{
11 svndump_init(NULL);
12 svndump_read((argc > 1) ? argv[1] : NULL);
David Barr21746aa2010-08-09 17:55:00 -050013 svndump_deinit();
Jonathan Niedere6051642010-07-15 18:25:39 +020014 svndump_reset();
15 return 0;
16}