summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/strings/sso_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples/strings/sso_map.c')
-rw-r--r--misc/examples/strings/sso_map.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/misc/examples/strings/sso_map.c b/misc/examples/strings/sso_map.c
new file mode 100644
index 00000000..4f84b651
--- /dev/null
+++ b/misc/examples/strings/sso_map.c
@@ -0,0 +1,19 @@
+#define i_implement
+#include <stc/cstr.h>
+#define i_key_str
+#define i_val_str
+#include <stc/cmap.h>
+
+int main(void)
+{
+ cmap_str m = {0};
+ cmap_str_emplace(&m, "Test short", "This is a short string");
+ cmap_str_emplace(&m, "Test long ", "This is a longer string");
+
+ c_forpair (k, v, cmap_str, m)
+ printf("%s: '%s' Len=%" c_ZI ", Is long: %s\n",
+ cstr_str(_.k), cstr_str(_.v), cstr_size(_.v),
+ cstr_is_long(_.v) ? "true" : "false");
+
+ cmap_str_drop(&m);
+}