34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
static void
print_map(CFWMap *map)
{
cfw_map_iter_t iter;
cfw_map_iter(map, &iter);
cfw_map_iter_next(&iter);
fputs("{\n", stdout);
while (iter.key != NULL) {
printf("\t%s = %s\n",
cfw_string_c(iter.key),
cfw_string_c(iter.obj));
|
<
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
static void
print_map(CFWMap *map)
{
cfw_map_iter_t iter;
cfw_map_iter(map, &iter);
fputs("{\n", stdout);
while (iter.key != NULL) {
printf("\t%s = %s\n",
cfw_string_c(iter.key),
cfw_string_c(iter.obj));
|