| 17 | */ |
| 18 | |
| 19 | static inline void |
| 20 | alloc_xbuf(xbuf *xb, size_t sz) |
| 21 | { |
| 22 | xb->buf = new_array(char, sz); |
| 23 | xb->size = sz; |
| 24 | xb->len = xb->pos = 0; |
| 25 | } |
| 26 | |
| 27 | static inline void |
| 28 | realloc_xbuf(xbuf *xb, size_t sz) |
no outgoing calls
no test coverage detected