83 DC_SCOPED(str_to_vec_map) map = str_to_vec_map_new(stdalloc_get_ref());
86 char_vec empty_vec = char_vec_new(stdalloc_get_ref());
87 char* key = strdup(
"key1");
88 str_to_vec_map_insert(&map, key, empty_vec);
91 char_vec* vec_ptr = str_to_vec_map_write(&map, key);
92 char_vec_push(vec_ptr, strdup(
"value1"));
93 char_vec_push(vec_ptr, strdup(
"value2"));
94 char_vec_push(vec_ptr, strdup(
"value3"));