From 3ab2696705596509d306cb62164993a785c66901 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 18 Jan 2025 11:14:14 -0500 Subject: [PATCH] Updated dstr sz. --- src/include/dstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/dstr.h b/src/include/dstr.h index 12ff737..976a1f1 100644 --- a/src/include/dstr.h +++ b/src/include/dstr.h @@ -3,7 +3,7 @@ #include -#define DSTR_INITSZ 2 +#define DSTR_INITSZ 128 typedef struct { char* buf; // The buffer containing the string.