Mercurial > hg-old > index.cgi
comparison src/lwlink.c @ 294:0f488febdc2b
command line options
author | lost |
---|---|
date | Sat, 17 Jan 2009 16:55:53 +0000 |
parents | |
children | 14d835cf02d9 |
comparison
equal
deleted
inserted
replaced
293:f14e82afdac7 | 294:0f488febdc2b |
---|---|
1 /* | |
2 lwlink.c | |
3 Copyright © 2008 William Astle | |
4 | |
5 This file is part of LWLINK. | |
6 | |
7 LWLINK is free software: you can redistribute it and/or modify it under the | |
8 terms of the GNU General Public License as published by the Free Software | |
9 Foundation, either version 3 of the License, or (at your option) any later | |
10 version. | |
11 | |
12 This program is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
15 more details. | |
16 | |
17 You should have received a copy of the GNU General Public License along with | |
18 this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | |
20 | |
21 | |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include "config.h" | |
26 #endif | |
27 | |
28 #define __lwlink_c_seen__ | |
29 | |
30 #include <argp.h> | |
31 #include <errno.h> | |
32 #include <stdio.h> | |
33 #include <stdlib.h> | |
34 | |
35 #include "lwlink.h" | |
36 | |
37 int debug_level = 0; | |
38 int outformat = OUTPUT_DECB; | |
39 char *outfile = NULL; | |
40 |