From f8accdbcee0b397ad6ba2f2c2c64575a003e71e5 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Thu, 19 Jan 2023 21:20:16 +0100 Subject: Finish last commit. Most safe function macros are now preferred lowercase, whereas flow control macros (c_FOREACH, ..) are preferred uppercase. --- docs/cmap_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/cmap_api.md') diff --git a/docs/cmap_api.md b/docs/cmap_api.md index a33715fc..3848e67e 100644 --- a/docs/cmap_api.md +++ b/docs/cmap_api.md @@ -353,7 +353,7 @@ typedef struct Viking { } Viking; static inline void Viking_drop(Viking* v) { - c_DROP(cstr, &v->name, &v->country); + c_drop(cstr, &v->name, &v->country); } // Define Viking raw struct with cmp, hash, and convertion functions between Viking and RViking structs: -- cgit v1.2.3