* xmlXPathCastToNumber: * @val: an XPath object * * Converts an XPath object to its number value * * Returns the number value */
| 4941 | * Returns the number value |
| 4942 | */ |
| 4943 | double |
| 4944 | xmlXPathCastToNumber(xmlXPathObjectPtr val) { |
| 4945 | return(xmlXPathCastToNumberInternal(NULL, val)); |
| 4946 | } |
| 4947 | |
| 4948 | /** |
| 4949 | * xmlXPathConvertNumber: |
no test coverage detected