repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'bc/fortran-userdiff'
[git.git]
/
test-svn-fe.c
blob
77cf78abcfd18532b1b75e5ad5efa21b27f1a28c
1
/*
2
* test-svn-fe: Code to exercise the svn import lib
3
*/
4
5
#include
"git-compat-util.h"
6
#include
"vcs-svn/svndump.h"
7
8
int
main
(
int
argc
,
char
*
argv
[])
9
{
10
if
(
argc
!=
2
)
11
usage
(
"test-svn-fe <file>"
);
12
svndump_init
(
argv
[
1
]);
13
svndump_read
(
NULL
);
14
svndump_deinit
();
15
svndump_reset
();
16
return
0
;
17
}