* xmlTextWriterWriteRaw: * @writer: the xmlTextWriterPtr * @content: text string * * Write a raw xml text. * * Returns the bytes written (may be 0 because of buffering) or -1 in case of error */
| 1395 | * Returns the bytes written (may be 0 because of buffering) or -1 in case of error |
| 1396 | */ |
| 1397 | int |
| 1398 | xmlTextWriterWriteRaw(xmlTextWriterPtr writer, const xmlChar * content) |
| 1399 | { |
| 1400 | return xmlTextWriterWriteRawLen(writer, content, xmlStrlen(content)); |
| 1401 | } |
| 1402 | |
| 1403 | /** |
| 1404 | * xmlTextWriterWriteFormatString: |
no test coverage detected