* xmlXPathCacheNewCString: * @pctxt the XPath context * @val: the char * value * * This is the cached version of xmlXPathNewCString(). * Acquire an xmlXPathObjectPtr of type string and of value @val * * Returns the created or reused object. */
| 1850 | * Returns the created or reused object. |
| 1851 | */ |
| 1852 | static xmlXPathObjectPtr |
| 1853 | xmlXPathCacheNewCString(xmlXPathParserContextPtr pctxt, const char *val) |
| 1854 | { |
| 1855 | return xmlXPathCacheNewString(pctxt, BAD_CAST val); |
| 1856 | } |
| 1857 | |
| 1858 | /** |
| 1859 | * xmlXPathCacheNewBoolean: |
no test coverage detected