From 61064d92ae0b85ea375ba2d5e80c49f671f853df Mon Sep 17 00:00:00 2001 From: ahmedsamyh Date: Sun, 26 Jan 2025 23:18:13 +0500 Subject: [PATCH] Fix escaped comment --- commonlib.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)) -- 2.39.5