* Initialize the contents of an xo_buffer_t. */
| 35 | * Initialize the contents of an xo_buffer_t. |
| 36 | */ |
| 37 | static inline void |
| 38 | xo_buf_init (xo_buffer_t *xbp) |
| 39 | { |
| 40 | xbp->xb_size = XO_BUFSIZ; |
| 41 | xbp->xb_bufp = xo_realloc(NULL, xbp->xb_size); |
| 42 | xbp->xb_curp = xbp->xb_bufp; |
| 43 | } |
| 44 | |
| 45 | /* |
| 46 | * Reset the buffer to empty |
no outgoing calls
no test coverage detected