Nyx Node
|
Public Member Functions | |
nyx_object_t * | nyx_object_parse_buff (__ZEROABLE__ size_t size, __NULLABLE__ BUFF_t buff) |
Parses a JSON object from a string buffer. | |
__NULLABLE__ nyx_object_t * | nyx_object_parse (__NULLABLE__ STR_t text) |
Parses a JSON object from a string. | |
void | nyx_object_free (__NULLABLE__ nyx_object_t *object) |
Frees memory of the provided JSON object. | |
bool | nyx_object_equal (__NULLABLE__ const nyx_object_t *object1, __NULLABLE__ const nyx_object_t *object2) |
Compares two JSON objects. | |
str_t | nyx_object_to_string (__NULLABLE__ const nyx_object_t *object) |
Returns a string representing the provided object. | |
str_t | nyx_object_to_cstring (__NULLABLE__ const nyx_object_t *object) |
Returns a C/C++ string representing the provided object. | |