Ignore:
Timestamp:
Feb 19, 2006 1:29:42 AM (18 years ago)
Author:
bennylp
Message:

Added pj_xml_clone()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/include/pjlib-util/xml.h

    r123 r194  
    9898 
    9999/** 
     100 * Clone XML node and all subnodes. 
     101 * 
     102 * @param pool      Pool to allocate memory for new nodes. 
     103 * @param rhs       The node to clone. 
     104 * 
     105 * @return          Cloned XML node, or NULL on fail. 
     106 */ 
     107PJ_DECL(pj_xml_node*) pj_xml_clone( pj_pool_t *pool, const pj_xml_node *rhs); 
     108 
     109 
     110/** 
    100111 * Create an empty node. 
    101112 * 
Note: See TracChangeset for help on using the changeset viewer.