2 * Copyright (C) 2010 Martin Willi
3 * Copyright (C) 2010 revosec AG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 int main(int argc
, char *argv
[])
27 atexit(library_deinit
);
28 lib
->plugins
->load(lib
->plugins
, NULL
, PLUGINS
);
32 fprintf(stderr
, "usage: %s <url>\n", argv
[0]);
34 if (lib
->fetcher
->fetch(lib
->fetcher
, argv
[1], &res
, FETCH_END
) == SUCCESS
)
36 ignore_result(write(1, res
.ptr
, res
.len
));