| 174 | } |
| 175 | |
| 176 | xmlNodePtr mi_xmlNodeGetNodeByName(xmlNodePtr node, const char *name) |
| 177 | { |
| 178 | xmlNodePtr cur = node; |
| 179 | while (cur) { |
| 180 | if(xmlStrcasecmp(cur->name, (const xmlChar*)name)==0) |
| 181 | return cur; |
| 182 | cur = cur->next; |
| 183 | } |
| 184 | return NULL; |
| 185 | } |
| 186 | |
| 187 | void mi_xmlrpc_http_destroy_async_lock(void) |
| 188 | { |
no outgoing calls
no test coverage detected