* xmlXPathCastNodeSetToBoolean: * @ns: a node-set * * Converts a node-set to its boolean value * * Returns the boolean value */
| 5006 | * Returns the boolean value |
| 5007 | */ |
| 5008 | int |
| 5009 | xmlXPathCastNodeSetToBoolean (xmlNodeSetPtr ns) { |
| 5010 | if ((ns == NULL) || (ns->nodeNr == 0)) |
| 5011 | return(0); |
| 5012 | return(1); |
| 5013 | } |
| 5014 | |
| 5015 | /** |
| 5016 | * xmlXPathCastToBoolean: |
no outgoing calls
no test coverage detected