| 515 | return n; |
| 516 | } |
| 517 | xml_node xml_node__find_node(NULLCFuncPtr pred, xml_node* ptr) |
| 518 | { |
| 519 | xml_node n; |
| 520 | n.node = ptr->node.find_node(predicate_nullc_node(pred)); |
| 521 | return n; |
| 522 | } |
| 523 | |
| 524 | int xml_node__operatorNot(xml_node* att) |
| 525 | { |
nothing calls this directly
no test coverage detected