| 556 | int wrap_cmp( xmlNodePtr x, xmlNodePtr y ); |
| 557 | #ifdef XP_OPTIMIZED_NON_ELEM_COMPARISON |
| 558 | static int wrap_cmp( xmlNodePtr x, xmlNodePtr y ) |
| 559 | { |
| 560 | int res = xmlXPathCmpNodesExt(x, y); |
| 561 | return res == -2 ? res : -res; |
| 562 | } |
| 563 | #else |
| 564 | static int wrap_cmp( xmlNodePtr x, xmlNodePtr y ) |
| 565 | { |
nothing calls this directly
no test coverage detected