summaryrefslogtreecommitdiffhomepage
path: root/examples/mapmap.c
blob: 7782f5bf2b5314adbe1ac40c8b7af28e4f8e5a3a (plain)
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

#include <stdio.h>
#include <stc/cmap.h>
#include <stc/cstr.h>

using_cmap_str();
using_cmap_strkey(cfg, cmap_str, cmap_str_del, cmap_str_clone);

int main(void) {
    cmap_cfg config = cmap_cfg_init();
    cmap_str init = cmap_str_init();
    cmap_str_put(&cmap_cfg_emplace(&config, "user", init).first->second, "name", "Joe");
    cmap_str_put(&cmap_cfg_emplace(&config, "user", init).first->second, "groups", "proj1,proj3");
    cmap_str_put(&cmap_cfg_emplace(&config, "group", init).first->second, "proj1", "Energy");
    cmap_str_put(&cmap_cfg_emplace(&config, "group", init).first->second, "proj2", "Windy");
    cmap_str_put(&cmap_cfg_emplace(&config, "group", init).first->second, "proj3", "Oil");
    cmap_str_put(&cmap_cfg_emplace(&config, "admin", init).first->second, "employees", "2302");

    cmap_str_put(&cmap_cfg_emplace(&config, "group", init).first->second, "proj2", "Wind"); // Update

    c_foreach (i, cmap_cfg, config)
        c_foreach (j, cmap_str, i.ref->second)
            printf("%s: %s - %s (%u)\n", i.ref->first.str, j.ref->first.str, j.ref->second.str, i.ref->second.bucket_count);

    cmap_cfg_del(&config);
}