зеркало из https://github.com/microsoft/git.git
18 строки
296 B
C
18 строки
296 B
C
/*
|
|
* test-svn-fe: Code to exercise the svn import lib
|
|
*/
|
|
|
|
#include "git-compat-util.h"
|
|
#include "vcs-svn/svndump.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
if (argc != 2)
|
|
usage("test-svn-fe <file>");
|
|
svndump_init(argv[1]);
|
|
svndump_read(NULL);
|
|
svndump_deinit();
|
|
svndump_reset();
|
|
return 0;
|
|
}
|