Jonathan Nieder | e605164 | 2010-07-15 18:25:39 +0200 | [diff] [blame] | 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> |
Ramkumar Ramachandra | 199f549 | 2010-07-29 11:06:19 +0530 | [diff] [blame] | 7 | #include "svndump.h" |
Jonathan Nieder | e605164 | 2010-07-15 18:25:39 +0200 | [diff] [blame] | 8 | |
| 9 | int main(int argc, char **argv) |
| 10 | { |
| 11 | svndump_init(NULL); |
| 12 | svndump_read((argc > 1) ? argv[1] : NULL); |
David Barr | 21746aa | 2010-08-09 17:55:00 -0500 | [diff] [blame] | 13 | svndump_deinit(); |
Jonathan Nieder | e605164 | 2010-07-15 18:25:39 +0200 | [diff] [blame] | 14 | svndump_reset(); |
| 15 | return 0; |
| 16 | } |