diff -r 5c926801f052 -r 04c53b3c8378 src/cx/array_list.h --- a/src/cx/array_list.h Sun Feb 18 13:38:42 2024 +0100 +++ b/src/cx/array_list.h Sun Feb 18 21:12:28 2024 +0100 @@ -54,14 +54,15 @@ * * @see cx_array_simple_add() * @see cx_array_simple_copy() + * @see cx_array_initialize() */ -#define cx_array_declare(type, name) \ +#define CX_ARRAY_DECLARE(type, name) \ type * name; \ size_t name##_size; \ size_t name##_capacity; /** - * Initializes an array declared with cx_array_declare(). + * Initializes an array declared with CX_ARRAY_DECLARE(). * * The memory for the array is allocated with stdlib malloc(). * @param array the array