| 179 * Creates a node from a string of XML. Calling this on the |
179 * Creates a node from a string of XML. Calling this on the |
| 180 * root node of an XML document will parse the entire document |
180 * root node of an XML document will parse the entire document |
| 181 * into a tree of nodes, and return the xmlnode of the root. |
181 * into a tree of nodes, and return the xmlnode of the root. |
| 182 * |
182 * |
| 183 * @param str The string of xml. |
183 * @param str The string of xml. |
| 184 * @param size The size of the string. |
184 * @param size The size of the string, or -1 if @a str is |
| |
185 * NUL-terminated. |
| 185 * |
186 * |
| 186 * @return The new node. |
187 * @return The new node. |
| 187 */ |
188 */ |
| 188 xmlnode *xmlnode_from_str(const char *str, gssize size); |
189 xmlnode *xmlnode_from_str(const char *str, gssize size); |
| 189 |
190 |