Skip to content
Snippets Groups Projects
json-validator.h 214 B
#ifndef JSON_VALIDATOR_H
#define JSON_VALIDATOR_H
#ifdef __cplusplus
extern "C"
{
#endif
bool json_object_validate_schema(struct json_object *j_obj, struct json_object *j_schema);
#ifdef __cplusplus
}
#endif
#endif