]> Pileus Git - lackey/blob - src/args.c
Add args and usage output
[lackey] / src / args.c
1 /*
2  * Copyright (C) 2016 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <getopt.h>
21
22 #include "args.h"
23 #include "util.h"
24
25 /* Setup info */
26 static int    argc;
27 static char **argv;
28
29 /* Options */
30 const char *short_options = "h";
31
32 struct option long_options[] = {
33         {"help", 0, NULL, 'h'},
34 };
35
36 /* Usage */
37 static void usage(char *name)
38 {
39         printf("Usage:\n");
40         printf("  %s [OPTION...]\n", name);
41         printf("\n");
42         printf("Options:\n");
43         printf("  -h, --help  Print usage information\n");
44 }
45
46 /* Initialize */
47 void args_setup(int _argc, char **_argv)
48 {
49         argc = _argc;
50         argv = _argv;
51 }
52
53 /* Initialize */
54 void args_init(void)
55 {
56         while (1) {
57                 int c = getopt_long(argc, argv,
58                                 short_options, long_options, NULL);
59                 if (c == -1)
60                         break;
61                 switch (c) {
62                         case 'h':
63                                 usage(argv[0]);
64                                 exit(0);
65                                 break;
66                 }
67         }
68 }