From cf48ea81759083021500e847d6e9285d5e34a37d Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Wed, 15 Feb 2017 16:03:35 +0100 Subject: [PATCH] New Type: cJSON_Invalid This assigns the macro cJSON_Invalid to 0. --- cJSON.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cJSON.h b/cJSON.h index 8502048..6f371f9 100644 --- a/cJSON.h +++ b/cJSON.h @@ -39,6 +39,7 @@ extern const char* cJSON_Version(void); #include /* cJSON Types: */ +#define cJSON_Invalid (0) #define cJSON_False (1 << 0) #define cJSON_True (1 << 1) #define cJSON_NULL (1 << 2)