comparison src/xmlnode.h @ 10337:682201b69107

[gaim-migrate @ 11545] * Preliminary reading of status.xml using xmlnode.[h|c] * I made a few changes the blist.xml readering code that I think makes it cleaner * "gaim_statuses_find_saved" makes more sense to me than "gaim_statuses_find_stored" * struct GaimStatus isn't really supposed to be used for keeping the saved statuses, is it? I don't see how that would work. It seems to make more sense to have a separate data structure for it. Maybe I'm not seeing things clearly. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 09 Dec 2004 03:55:19 +0000
parents d88ee1d73a93
children 5b7a74d397cc
comparison
equal deleted inserted replaced
10336:114d3ac8ff5a 10337:682201b69107
171 * tab and new line characters. 171 * tab and new line characters.
172 */ 172 */
173 char *xmlnode_to_formatted_str(xmlnode *node, int *len); 173 char *xmlnode_to_formatted_str(xmlnode *node, int *len);
174 174
175 /** 175 /**
176 * Creates a node from a string of xml. 176 * Creates a node from a string of XML. Calling this on the
177 * root node of an XML document will parse the entire document
178 * into a tree of nodes, and return the xmlnode of the root.
177 * 179 *
178 * @param str The string of xml. 180 * @param str The string of xml.
179 * @param size The size of the string. 181 * @param size The size of the string.
180 * 182 *
181 * @return The new node. 183 * @return The new node.