* xmlXPathCastNodeToString: * @node: a node * * Converts a node to its string value. * * Returns a newly allocated string. */
| 4731 | * Returns a newly allocated string. |
| 4732 | */ |
| 4733 | xmlChar * |
| 4734 | xmlXPathCastNodeToString (xmlNodePtr node) { |
| 4735 | return(xmlNodeGetContent(node)); |
| 4736 | } |
| 4737 | |
| 4738 | /** |
| 4739 | * xmlXPathCastNodeSetToString: |
no test coverage detected