* xmlBufferCreateStatic: * @mem: the memory area * @size: the size in byte * * Returns an XML buffer initialized with bytes. */
| 7193 | * Returns an XML buffer initialized with bytes. |
| 7194 | */ |
| 7195 | xmlBufferPtr |
| 7196 | xmlBufferCreateStatic(void *mem, size_t size) { |
| 7197 | xmlBufferPtr buf = xmlBufferCreateSize(size); |
| 7198 | |
| 7199 | xmlBufferAdd(buf, mem, size); |
| 7200 | return(buf); |
| 7201 | } |
| 7202 | |
| 7203 | /** |
| 7204 | * xmlBufferSetAllocationScheme: |
nothing calls this directly
no test coverage detected