forked from Dr-Noob/snetscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
args.c
75 lines (62 loc) · 1.61 KB
/
args.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <getopt.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#define ARG_STR_HELP "help"
#define ARG_STR_DEVICE "dev"
#define ARG_STR_VERSION "version"
#define ARG_CHAR_HELP 'h'
#define ARG_CHAR_DEVICE 'd'
#define ARG_CHAR_VERSION 'v'
struct args_struct {
bool help_flag;
bool version_flag;
char* device;
};
static struct args_struct args;
void parseArgs(int argc, char* argv[]) {
int c;
int digit_optind = 0;
int option_index = 0;
bool device_set = false;
opterr = 0;
args.help_flag = false;
args.device = NULL;
static struct option long_options[] = {
{ARG_STR_HELP, no_argument, 0, ARG_CHAR_HELP },
{ARG_STR_DEVICE, required_argument, 0, ARG_CHAR_DEVICE },
{ARG_STR_VERSION, no_argument, 0, ARG_CHAR_VERSION },
{0, 0, 0, 0}
};
c = getopt_long(argc, argv,"",long_options, &option_index);
while (c != -1) {
if(c == ARG_CHAR_HELP)
args.help_flag = true;
else if (c == ARG_CHAR_VERSION)
args.version_flag = true;
else if (c == ARG_CHAR_DEVICE)
args.device = optarg;
else if(c == '?') {
printf("WARNING: Invalid options\n");
args.help_flag = true;
break;
}
else
printf("Bug at line number %d in file %s\n", __LINE__, __FILE__);
option_index = 0;
c = getopt_long(argc, argv,"",long_options, &option_index);
}
if (optind < argc) {
printf("WARNING: Invalid options\n");
args.help_flag = true;
}
}
bool showHelp() {
return args.help_flag;
}
bool showVersion() {
return args.version_flag;
}
char* getDevice() {
return args.device;
}