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
|
/*
A=b;C="d" ; E="F;" ; F= G=Z
*/
// SPDX-License-Identifier: MIT
/*
* shconfig test program
*/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <libHX/init.h>
#include <libHX/map.h>
#include <libHX/option.h>
static void t_shconfig(const char *file)
{
char *A, *C, *E;
struct HXoption opt_tab[] = {
{.ln = "A", .type = HXTYPE_STRING, .ptr = &A},
{.ln = "C", .type = HXTYPE_STRING, .ptr = &C},
{.ln = "E", .type = HXTYPE_STRING, .ptr = &E},
HXOPT_TABLEEND,
};
if (HX_shconfig(file, opt_tab) < 0)
fprintf(stderr, "Read error %s: %s\n", file, strerror(errno));
}
static void t_shconfig2(const char *file)
{
const struct HXmap_node *node;
struct HXmap_trav *trav;
struct HXmap *map;
map = HX_shconfig_map(file);
if (map == NULL) {
fprintf(stderr, "HX_shconfig_map: %s\n", strerror(errno));
abort();
}
trav = HXmap_travinit(map, HXMAP_NOFLAGS);
while ((node = HXmap_traverse(trav)) != NULL)
printf("\t\"%s\" -> \"%s\"\n", node->skey, node->sdata);
HXmap_travfree(trav);
}
int main(int argc, const char **argv)
{
int ret;
ret = HX_init();
if (ret <= 0) {
fprintf(stderr, "HX_init: %s\n", strerror(-ret));
return EXIT_FAILURE;
}
t_shconfig((argc >= 2) ? argv[1] : "tc-shconf.c");
t_shconfig2((argc >= 2) ? argv[1] : "tc-shconf.c");
HX_exit();
return EXIT_SUCCESS;
}
|