repo.or.cz
/
alt-git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add a sample user for the svndump library
[alt-git.git]
/
contrib
/
svn-fe
/
svn-fe.c
blob
43c4320cace0beec397ae4a05a9a8a0228fff010
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
"vcs-svn/svndump.h"
8
9
int
main
(
int
argc
,
char
**
argv
)
10
{
11
svndump_init
(
NULL
);
12
svndump_read
((
argc
>
1
) ?
argv
[
1
] :
NULL
);
13
svndump_reset
();
14
return
0
;
15
}