comparison libpurple/xmlnode.h @ 26131:ff4212a5268f

propagate from branch 'im.pidgin.pidgin' (head 431618de0f30a6938f7e14d2d61ee5d7738acd59) to branch 'im.pidgin.pidgin.vv' (head 8df00cb1a28baa69d0a68e0e96af201ec7d87c09)
author Marcus Lundblad <ml@update.uu.se>
date Mon, 02 Mar 2009 18:47:27 +0000
parents 4b8c4870b13a af42303654a5
children 38238d41923b
comparison
equal deleted inserted replaced
25955:52fbda23e398 26131:ff4212a5268f
246 * @return The prefix of this node 246 * @return The prefix of this node
247 */ 247 */
248 const char *xmlnode_get_prefix(const xmlnode *node); 248 const char *xmlnode_get_prefix(const xmlnode *node);
249 249
250 /** 250 /**
251 * Gets the parent node.
252 *
253 * @param child The child node.
254 *
255 * @return The parent or NULL.
256 */
257 xmlnode *xmlnode_get_parent(const xmlnode *child);
258
259 /**
251 * Returns the node in a string of xml. 260 * Returns the node in a string of xml.
252 * 261 *
253 * @param node The starting node to output. 262 * @param node The starting node to output.
254 * @param len Address for the size of the string. 263 * @param len Address for the size of the string.
255 * 264 *