* xmlBufferWriteChar: * @buf: the XML buffer output * @string: the string to add * * routine which manage and grows an output buffer. This one add * C chars at the end of the array. */
| 7685 | * C chars at the end of the array. |
| 7686 | */ |
| 7687 | void |
| 7688 | xmlBufferWriteChar(xmlBufferPtr buf, const char *string) { |
| 7689 | if (buf == NULL) |
| 7690 | return; |
| 7691 | xmlBufferCCat(buf, string); |
| 7692 | } |
| 7693 | |
| 7694 | |
| 7695 | /** |
no test coverage detected