From b76f9e47d17e7791974da6769f2fd3865dbb1df6 Mon Sep 17 00:00:00 2001 From: Al Date: Wed, 8 Jul 2015 16:46:12 -0400 Subject: [PATCH] [utils] max string size for int8_t and int16_t --- src/string_utils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/string_utils.h b/src/string_utils.h index 215884f5..b3a1481f 100644 --- a/src/string_utils.h +++ b/src/string_utils.h @@ -15,6 +15,8 @@ extern "C" { #define MAX_UTF8_CHAR_SIZE 4 +#define INT8_MAX_STRING_SIZE 5 +#define INT16_MAX_STRING_SIZE 7 #define INT32_MAX_STRING_SIZE 11 #define INT64_MAX_STRING_SIZE 21