| 1114 | } |
| 1115 | |
| 1116 | gboolean |
| 1117 | xml_has_children(const xmlNode *xml_root) |
| 1118 | { |
| 1119 | if(xml_root != NULL && xml_root->children != NULL) { |
| 1120 | return TRUE; |
| 1121 | } |
| 1122 | return FALSE; |
| 1123 | } |
| 1124 | |
| 1125 | int |
| 1126 | crm_element_value_int(xmlNode *data, const char *name, int *dest) |
no outgoing calls
no test coverage detected