Merge pull request #347 from raiden00pl/master

Undef true and false first also for cJSON_Utils.c
This commit is contained in:
Max Bruckner 2019-04-28 13:31:46 +02:00 committed by GitHub
commit 62bc2e3432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -50,7 +50,14 @@
#include "cJSON_Utils.h"
/* define our own boolean type */
#ifdef true
#undef true
#endif
#define true ((cJSON_bool)1)
#ifdef false
#undef false
#endif
#define false ((cJSON_bool)0)
static unsigned char* cJSONUtils_strdup(const unsigned char* const string)