The cJSON.h library is only used by C code, so the macro guard for C++ is not
needed.
#include <vulkan/vulkan_core.h>
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
/* cJSON Types: */
#define cJSON_False 0
#define cJSON_True 1
#define cJSON_SetIntValue(object, val) ((object) ? (object)->valueint = (object)->valuedouble = (val) : (val))
#define cJSON_SetNumberValue(object, val) ((object) ? (object)->valueint = (object)->valuedouble = (val) : (val))
-#if defined(__cplusplus)
-}
-#endif
-
// Helper functions to using JSON
struct loader_instance;