From 0d762da70c031b8d7e082ce8dc9051f8aee8b722 Mon Sep 17 00:00:00 2001
From: Anonymus Raccoon
Date: Sun, 3 May 2020 16:01:00 +0200
Subject: [PATCH] Update README.md
---
README.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 82e6cf8..5a8dcb1 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,8 @@ Use ``xml_parse(path)`` to parse the whole xml.
Use ``xml_getnode(xml, node_name)`` to get the first node with the name you inputed.
+
+### Data usage
Here is the full list of helper function that will allow you to simply use the data:
@@ -45,7 +47,7 @@ Here is the full list of helper function that will allow you to simply use the d
```bool xml_getbool(node *n, const char *key, bool default_value);``` Interpret the property as a boolean. If the value is not found, ``default_value`` is returned.
-
+### Free
And do not forget to free the parsed xml when you do not need it anymore with the function: ``void xml_destroy(node *n);``