| 509 | return att; |
| 510 | } |
| 511 | xml_node xml_node__find_child(NULLCFuncPtr pred, xml_node* ptr) |
| 512 | { |
| 513 | xml_node n; |
| 514 | n.node = ptr->node.find_child(predicate_nullc_node(pred)); |
| 515 | return n; |
| 516 | } |
| 517 | xml_node xml_node__find_node(NULLCFuncPtr pred, xml_node* ptr) |
| 518 | { |
| 519 | xml_node n; |
nothing calls this directly
no test coverage detected