16 lines
287 B
C
16 lines
287 B
C
|
/*
|
||
|
* This file is in the public domain.
|
||
|
* You may freely use, modify, distribute, and relicense it.
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include "vcs-svn/svndump.h"
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
svndump_init(NULL);
|
||
|
svndump_read((argc > 1) ? argv[1] : NULL);
|
||
|
svndump_reset();
|
||
|
return 0;
|
||
|
}
|