add json_object_new_null

This commit is contained in:
dota17
2020-01-20 15:00:11 +08:00
parent 360d28b961
commit 010f33d460
9 changed files with 21 additions and 1 deletions

View File

@@ -1275,6 +1275,11 @@ static int json_array_equal(struct json_object* jso1,
return 1;
}
struct json_object* json_object_new_null()
{
return NULL;
}
static int json_object_all_values_equal(struct json_object* jso1,
struct json_object* jso2)
{