-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptions_and_debug_example.c
85 lines (76 loc) · 2.37 KB
/
Options_and_debug_example.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
76
77
78
79
80
81
82
83
84
85
/*
ELF Loader - chargeur/implanteur d'exécutables au format ELF à but pédagogique
Copyright (C) 2012 Guillaume Huard
Ce programme est libre, vous pouvez le redistribuer et/ou le modifier selon les
termes de la Licence Publique Générale GNU publiée par la Free Software
Foundation (version 2 ou bien toute autre version ultérieure choisie par vous).
Ce programme est distribué car potentiellement utile, mais SANS AUCUNE
GARANTIE, ni explicite ni implicite, y compris les garanties de
commercialisation ou d'adaptation dans un but spécifique. Reportez-vous à la
Licence Publique Générale GNU pour plus de détails.
Vous devez avoir reçu une copie de la Licence Publique Générale GNU en même
temps que ce programme ; si ce n'est pas le cas, écrivez à la Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
États-Unis.
Contact: [email protected]
ENSIMAG - Laboratoire LIG
51 avenue Jean Kuntzmann
38330 Montbonnot Saint-Martin
*/
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include "debug.h"
void usage(char *name)
{
fprintf(stderr, "Usage:\n"
"%s [ --help ] [ --option1 value ] [ --option2 value ] [ --debug file ] file\n\n"
"Prints values given as option. The --debug flag enables the output produced by "
"calls to the debug function in the named source file.\n",
name);
}
void sample_function(char *option1, char *option2)
{
debug("Beginning of the sample function\n");
debug("Given values are [ %s ] and [ %s ], time to print them:\n", option1, option2);
printf("Option 1: %s\n", option1);
printf("Option 2: %s\n", option2);
debug("End of the sample function\n");
}
int main(int argc, char *argv[])
{
int opt;
char *option1, *option2;
struct option longopts[] = {
{"debug", required_argument, NULL, 'd'},
{"option1", required_argument, NULL, '1'},
{"option2", required_argument, NULL, '2'},
{"help", no_argument, NULL, 'h'},
{NULL, 0, NULL, 0}};
option1 = NULL;
option2 = NULL;
while ((opt = getopt_long(argc, argv, "1:2:d:h", longopts, NULL)) != -1)
{
switch (opt)
{
case '1':
option1 = optarg;
break;
case '2':
option2 = optarg;
break;
case 'h':
usage(argv[0]);
exit(0);
case 'd':
add_debug_to(optarg);
break;
default:
fprintf(stderr, "Unrecognized option %c\n", opt);
usage(argv[0]);
exit(1);
}
}
sample_function(option1, option2);
return 0;
}