Use a much shorter static size for dynamic buffers.
All checks were successful
Remind unit tests / tests (push) Successful in 32s

Most strings are pretty short.
This commit is contained in:
Dianne Skoll
2024-11-01 16:40:44 -04:00
parent aaae80d02b
commit 17beef5ce6

View File

@@ -15,7 +15,7 @@
#include <stdio.h> /* For FILE */
#define DBUF_STATIC_SIZE 128
#define DBUF_STATIC_SIZE 32
typedef struct {
char *buffer;
size_t len;