| 154 | } |
| 155 | |
| 156 | static inline xmlAttr * |
| 157 | crm_first_attr(xmlNode *xml) |
| 158 | { |
| 159 | if(xml == NULL) { |
| 160 | return NULL; |
| 161 | } |
| 162 | return xml->properties; |
| 163 | } |
| 164 | |
| 165 | xmlNode * |
| 166 | find_xml_node(xmlNode *root, const char * search_path, gboolean must_find) |
no outgoing calls
no test coverage detected