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
|
/*------------------------------------------------------------------------------
* SOURCE
*------------------------------------------------------------------------------
*/
#include <stdio.h>
#include <stdlib.h>
#include "../ini_file.h"
/*------------------------------------------------------------------------------
* MAIN
*------------------------------------------------------------------------------
*/
int main(const int argc, const char **const argv) {
enum Ini_File_Errors error;
struct Ini_File *ini_file;
struct Ini_Section *ini_section;
char *value;
if ((argc < 2) || (argc > 4)) {
fprintf(stderr, "Usage: %s ini_file_name [section] [key]\n", argv[0]);
return EXIT_FAILURE;
}
ini_file = ini_file_parse(argv[1], NULL);
if (ini_file == NULL) {
fprintf(stderr, "It was not possible to parse the ini_file \"%s\"\n", argv[1]);
return EXIT_FAILURE;
}
switch (argc) {
case 2:
ini_file_print_to(ini_file, stdout);
break;
case 3:
error = ini_file_find_section(ini_file, argv[2], &ini_section);
if (error != ini_no_error) {
fprintf(stderr, "%s\n", ini_file_error_to_string(error));
ini_file_free(ini_file);
return EXIT_FAILURE;
}
ini_section_print_to(ini_section, stdout);
break;
case 4:
error = ini_file_find_property(ini_file, argv[2], argv[3], &value);
if (error != ini_no_error) {
fprintf(stderr, "%s\n", ini_file_error_to_string(error));
ini_file_free(ini_file);
return EXIT_FAILURE;
}
puts(value);
break;
}
ini_file_free(ini_file);
return EXIT_SUCCESS;
}
/*------------------------------------------------------------------------------
* END
*------------------------------------------------------------------------------
*/
|