| 729 | } xmlSBuf; |
| 730 | |
| 731 | static void |
| 732 | xmlSBufInit(xmlSBuf *buf, unsigned max) { |
| 733 | buf->mem = NULL; |
| 734 | buf->size = 0; |
| 735 | buf->cap = 0; |
| 736 | buf->max = max; |
| 737 | buf->code = XML_ERR_OK; |
| 738 | } |
| 739 | |
| 740 | static int |
| 741 | xmlSBufGrow(xmlSBuf *buf, unsigned len) { |
no outgoing calls
no test coverage detected