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
|
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
|
-
+
-
-
+
|
#include "compat.h"
#include "libconfig.h"
int help_cmd(const char *partarg, const char *arg, const char *argarg, const char *val, lc_flags_t flags, void *extra) {
printf("Usage info goes here\n");
printf("\n");
exit(EXIT_FAILURE);
}
int sally_cmd(const char *partarg, const char *arg, const char *argarg, const char *val, lc_flags_t flags, void *extra) {
PRINTERR_D("%s sets value: \"%s\" (flags=%i)", arg, val, flags);
PRINTERR("%s sets value: \"%s\" (flags=%i)", arg, val, flags);
return(0);
}
int cmd_ifmodule(const char *partarg, const char *arg, const char *argarg, const char *val, lc_flags_t flags, void *extra) {
if (flags == LC_FLAGS_SECTIONEND) {
return(LC_CBRET_OKAY);
}
if (flags != LC_FLAGS_SECTIONSTART) {
PRINTERR("IfModule can only be used as a section.");
return(LC_CBRET_ERROR);
}
if (argarg == NULL) {
PRINTERR("You must specify an argument to IfModule.");
return(LC_CBRET_ERROR);
}
SPOTVAR_S(arg);
SPOTVAR_S(argarg);
PRINTERR("IfModule (%s)", argarg);
return(LC_CBRET_IGNORESECTION);
}
int main(int argc, char **argv) {
char *joeval = NULL;
long long xval = -1;
int onoff = -1;
|