1
0
mirror of https://github.com/git/git.git synced 2024-10-20 20:28:13 +02:00
git/contrib/svn-fe/svn-fe.c

17 lines
298 B
C
Raw Normal View History

/*
* 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;
}