From 6912f689f13435c8eb41268a455226c4599aa0e6 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Wed, 21 Jun 2023 20:53:17 +0100 Subject: [PATCH] Update str_view_t typedef --- include/lexer/lexer.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/lexer/lexer.h b/include/lexer/lexer.h index 3e25a72..9f8187c 100644 --- a/include/lexer/lexer.h +++ b/include/lexer/lexer.h @@ -7,9 +7,10 @@ #define VALID_JSON true #define INVALID_JSON false -typedef const char *const str_view_t; +typedef const char *str_view_t; typedef enum { + TK_NO_TOKEN, TK_L_BRACE, TK_R_BRACE, TK_L_BRACKET,