| 503 | NULLCFuncPtr callback; |
| 504 | }; |
| 505 | xml_attribute xml_node__find_attribute(NULLCFuncPtr pred, xml_node* ptr) |
| 506 | { |
| 507 | xml_attribute att; |
| 508 | att.attribute = ptr->node.find_attribute(predicate_nullc_attribute(pred)); |
| 509 | return att; |
| 510 | } |
| 511 | xml_node xml_node__find_child(NULLCFuncPtr pred, xml_node* ptr) |
| 512 | { |
| 513 | xml_node n; |
nothing calls this directly
no test coverage detected