* xmlXPathNodeSetClear: * @set: the node set to clear * * Clears the list from all temporary XPath objects (e.g. namespace nodes * are feed), but does *not* free the list itself. Sets the length of the * list to 0. */
| 3345 | * list to 0. |
| 3346 | */ |
| 3347 | static void |
| 3348 | xmlXPathNodeSetClear(xmlNodeSetPtr set, int hasNsNodes) |
| 3349 | { |
| 3350 | xmlXPathNodeSetClearFromPos(set, 0, hasNsNodes); |
| 3351 | } |
| 3352 | |
| 3353 | /** |
| 3354 | * xmlXPathNodeSetKeepLast: |
no test coverage detected