* xmlXPathWrapCString: * @val: the char * value * * Wraps a string into an XPath object. * * Returns the newly created object. */
| 4413 | * Returns the newly created object. |
| 4414 | */ |
| 4415 | xmlXPathObjectPtr |
| 4416 | xmlXPathWrapCString (char * val) { |
| 4417 | return(xmlXPathWrapString((xmlChar *)(val))); |
| 4418 | } |
| 4419 | |
| 4420 | /** |
| 4421 | * xmlXPathWrapExternal: |
nothing calls this directly
no test coverage detected