From c4441f5fc665194fbd7a894a67a64a08c3beac42 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Wed, 8 Feb 2023 16:16:49 +0100 Subject: Changed to use lowercase flow-control macros in examples (uppercase will still be supported). Improved many examples to use c_make() to init containers. --- include/stc/csset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/stc/csset.h') diff --git a/include/stc/csset.h b/include/stc/csset.h index 392d258c..c14d2a6a 100644 --- a/include/stc/csset.h +++ b/include/stc/csset.h @@ -36,7 +36,7 @@ int main(void) { csset_i_insert(&s, 3); csset_i_insert(&s, 5); - c_FOREACH (k, csset_i, s) + c_foreach (k, csset_i, s) printf("set %d\n", *k.ref); csset_i_drop(&s); } -- cgit v1.2.3