From 1d0c48ce32a51bfa5885baa25ed5748090eceb5a Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Wed, 14 Sep 2022 16:57:19 -0400 Subject: [PATCH] Add constants --- src/include/Constants.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/include/Constants.h diff --git a/src/include/Constants.h b/src/include/Constants.h new file mode 100644 index 0000000..206dc8a --- /dev/null +++ b/src/include/Constants.h @@ -0,0 +1,8 @@ +#ifndef TELODENDRIA_CONSTANTS_H +#define TELODENDRIA_CONSTANTS_H + +#ifndef TELODENDRIA_STRING_CHUNK +#define TELODENDRIA_STRING_CHUNK 64 +#endif + +#endif