From d623c6c85071b9af5d607bb5d9aceceaea05220a Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Fri, 23 Dec 2022 23:55:10 +0100 Subject: Experimental uppercase macros. --- misc/examples/unordered_set.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'misc/examples/unordered_set.c') diff --git a/misc/examples/unordered_set.c b/misc/examples/unordered_set.c index a0b639da..509f97e1 100644 --- a/misc/examples/unordered_set.c +++ b/misc/examples/unordered_set.c @@ -7,7 +7,7 @@ int main() { // declaring set for storing string data-type - c_auto (cset_str, stringSet) + c_AUTO (cset_str, stringSet) { // inserting various string, same string will be stored // once in set @@ -36,7 +36,7 @@ int main() // now iterating over whole set and printing its // content printf("All elements :\n"); - c_foreach (itr, cset_str, stringSet) + c_FOREACH (itr, cset_str, stringSet) printf("%s\n", cstr_str(itr.ref)); } } -- cgit v1.2.3