From 822cc4e4baa34c864e9561e6862e89a05f2af6f8 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 21 Mar 2021 14:21:48 -0700 Subject: [PATCH] X-macro is questionable. --- src/min_array.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/min_array.h b/src/min_array.h index b05e2af..d437781 100644 --- a/src/min_array.h +++ b/src/min_array.h @@ -1,8 +1,8 @@ -/** X-macro for a minimal dynamic array: `MIN_ARRAY(name, type)`, where `name` - is an identifier prefix that satisfies `C` naming conventions when mangled and - `type` is defined tag-type associated therewith. When expanding the array, - resizing may be necessary and incurs amortised cost; any pointers to this - memory may become stale. */ +/** Macro for a type-specific minimal dynamic array: `MIN_ARRAY(name, type)`, + where `name` is an identifier prefix that satisfies `C` naming conventions + when mangled and `type` is defined tag-type associated therewith. When + expanding the array, resizing may be necessary and incurs amortised cost; any + pointers to this memory may become stale. */ #include /* size_t realloc free */ #include /* memmove strcmp memcpy */