summaryrefslogtreecommitdiff
path: root/contrib/svn-fe/svn-fe.c
blob: a2677b03e0ff8347d13a5d56f4fa2e1aba18824a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * This file is in the public domain.
 * You may freely use, modify, distribute, and relicense it.
 */
 
#include <stdlib.h>
#include "svndump.h"
 
int main(int argc, char **argv)
{
	svndump_init(NULL);
	svndump_read((argc > 1) ? argv[1] : NULL);
	svndump_deinit();
	svndump_reset();
	return 0;
}