From: ahmedsamyh Date: Sun, 26 Jan 2025 18:18:13 +0000 (+0500) Subject: Fix escaped comment X-Git-Url: https://www.git.momoyon.org/?a=commitdiff_plain;h=61064d92ae0b85ea375ba2d5e80c49f671f853df;p=commonlib.git Fix escaped comment --- diff --git a/commonlib.h b/commonlib.h index 0edf8c0..ba8280b 100644 --- a/commonlib.h +++ b/commonlib.h @@ -101,10 +101,10 @@ typedef struct c_Arena c_Arena; // [extra fields...]; // } // ``` -// #define DEFINE_DYNAMIC_ARRAY(struct_name, elm_type) typedef struct {\ -// elm_type *items;\ -// size_t count;\ -// size_t capacity;\ +// #define DEFINE_DYNAMIC_ARRAY(struct_name, elm_type) typedef struct { +// elm_type *items; +// size_t count; +// size_t capacity; // } #define c_DYNAMIC_ARRAY_INITIAL_CAPACITY (sizeof(size_t))