* Return the number of bytes left in the buffer */
| 55 | * Return the number of bytes left in the buffer |
| 56 | */ |
| 57 | static inline int |
| 58 | xo_buf_left (xo_buffer_t *xbp) |
| 59 | { |
| 60 | return xbp->xb_size - (xbp->xb_curp - xbp->xb_bufp); |
| 61 | } |
| 62 | |
| 63 | /* |
| 64 | * See if the buffer to empty |
no outgoing calls
no test coverage detected