From d7119c21fa566d2d5834cc5aa8627655ee849160 Mon Sep 17 00:00:00 2001 From: Clecio Jung Date: Sat, 15 Apr 2023 11:07:01 -0300 Subject: Update the README example --- ini_file.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ini_file.h') diff --git a/ini_file.h b/ini_file.h index 3df6dc9..4978b5a 100644 --- a/ini_file.h +++ b/ini_file.h @@ -64,8 +64,11 @@ */ #define USE_CUSTOM_STRING_ALLOCATOR #ifdef USE_CUSTOM_STRING_ALLOCATOR + +#define STRING_ALLOCATOR_BUFFER_SIZE 4096 + struct String_Buffer { - char buffer[4096]; + char buffer[STRING_ALLOCATOR_BUFFER_SIZE]; struct String_Buffer *next; }; #endif -- cgit v1.2.3