|
|
typedef struct nyx_xmldoc_s | nyx_xmldoc_t |
| |
XML serialization / deserialization (not available on ARDUINO).
◆ nyx_xml_type_t
◆ nyx_xmldoc_parse_buff()
| __NYX_NULLABLE__ nyx_xmldoc_t * nyx_xmldoc_parse_buff |
( |
__NYX_ZEROABLE__ size_t |
size, |
|
|
__NYX_NULLABLE__ BUFF_t |
buff |
|
) |
| |
Parses an XML document from a string buffer.
- Parameters
-
| size | String size. |
| buff | String pointer. |
- Returns
- The new XML document.
◆ nyx_xmldoc_parse()
Parses an XML document from a C string.
- Parameters
-
- Returns
- The new XML document.
◆ nyx_xmldoc_free()
| void nyx_xmldoc_free |
( |
__NYX_NULLABLE__ nyx_xmldoc_t * |
xmldoc | ) |
|
Frees memory of the provided XML document.
- Parameters
-
| xmldoc | The provided XML document. |
◆ nyx_xmldoc_to_string()
Returns a string representing the provided XML document.
- Parameters
-
- Returns
- A newly allocated string that represents the provided XML document.
- Note
- Must be freed.
Definition at line 284 of file dom.c.