repo.or.cz
/
git
/
gitweb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
merge-recursive: Fix rename/rename(1to2) resolution for virtual merge base
[git/gitweb.git]
/
contrib
/
svn-fe
/
svn-fe.c
blob
35db24f5eae600a973391915ceb61c4635941aec
1
/*
2
* This file is in the public domain.
3
* You may freely use, modify, distribute, and relicense it.
4
*/
5
6
#include <stdlib.h>
7
#include
"svndump.h"
8
9
int
main
(
int
argc
,
char
**
argv
)
10
{
11
if
(
svndump_init
(
NULL
))
12
return
1
;
13
svndump_read
((
argc
>
1
) ?
argv
[
1
] :
NULL
);
14
svndump_deinit
();
15
svndump_reset
();
16
return
0
;
17
}