src/xmlnode.h

changeset 11707
a2c8dd795e3b
parent 10848
43c8f0954e21
child 12233
0570720fee6c
equal deleted inserted replaced
11706:e45dd5c7b259 11707:a2c8dd795e3b
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

mercurial