| 207 | void crm_xml_cleanup(void); |
| 208 | |
| 209 | static inline xmlNode * |
| 210 | __xml_first_child(xmlNode * parent) |
| 211 | { |
| 212 | xmlNode *child = NULL; |
| 213 | |
| 214 | if (parent) { |
| 215 | child = parent->children; |
| 216 | while (child && child->type != XML_ELEMENT_NODE) { |
| 217 | child = child->next; |
| 218 | } |
| 219 | } |
| 220 | return child; |
| 221 | } |
| 222 | |
| 223 | static inline xmlNode * |
| 224 | __xml_next(xmlNode * child) |
no outgoing calls