* xmlBufferCCat: * @buf: the buffer to dump * @str: the C char string * * Append a zero terminated C string to an XML buffer. * * Returns 0 successful, a positive error code number otherwise * and -1 in case of internal or API error. */
| 7657 | * and -1 in case of internal or API error. |
| 7658 | */ |
| 7659 | int |
| 7660 | xmlBufferCCat(xmlBufferPtr buf, const char *str) { |
| 7661 | return xmlBufferCat(buf, (const xmlChar *) str); |
| 7662 | } |
| 7663 | |
| 7664 | /** |
| 7665 | * xmlBufferWriteCHAR: |