|
Nyx Node
|

Data Structures | |
| struct | nyx_null_t |
| Struct describing a JSON null object. More... | |
Functions | |
| nyx_null_t * | nyx_null_t::nyx_null_new (void) |
| Allocates a new JSON null object. | |
| void | nyx_null_t::nyx_null_free (nyx_null_t *object) |
| Frees memory of the provided JSON null object. | |
| str_t | nyx_null_t::nyx_null_to_string (const nyx_null_t *object) |
| Returns a string representing the provided JSON null object. | |
JSON Null Object.
| nyx_null_t * nyx_null_new | ( | void | ) |
Allocates a new JSON null object.
Definition at line 12 of file json_null.c.
| void nyx_null_free | ( | nyx_null_t * | object | ) |
Frees memory of the provided JSON null object.
| object | JSON null object. |
Definition at line 29 of file json_null.c.
| str_t nyx_null_to_string | ( | const nyx_null_t * | object | ) |
Returns a string representing the provided JSON null object.
| object | JSON null object. |