#include #include #include #include #include "json.h" json_object* jsonParseString(char* stringedJSON) { struct json_object *json; json = ( stringedJSON != NULL && strlen(stringedJSON) > 0 ) ? json_tokener_parse(stringedJSON) : NULL; free(stringedJSON); return json; }