| 145 | int add_xml_object(xmlNode *parent, xmlNode *target, xmlNode *update, gboolean as_diff); |
| 146 | |
| 147 | static inline const char * |
| 148 | crm_attr_value(xmlAttr *attr) |
| 149 | { |
| 150 | if(attr == NULL || attr->children == NULL) { |
| 151 | return NULL; |
| 152 | } |
| 153 | return (const char*)attr->children->content; |
| 154 | } |
| 155 | |
| 156 | static inline xmlAttr * |
| 157 | crm_first_attr(xmlNode *xml) |
no outgoing calls
no test coverage detected