Welcome to mirror list, hosted at ThFree Co, Russian Federation.

svn-fe.c « svn-fe « contrib - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9b9ba4da41c2de0a8ed8e1c540d2c108d0616f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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_reset();
	return 0;
}