Return bytes remaining in the string buffer * Ensure there is space for a NULL terminator. */
| 93 | /* Return bytes remaining in the string buffer |
| 94 | * Ensure there is space for a NULL terminator. */ |
| 95 | static inline int strbuf_empty_length(strbuf_t *s) |
| 96 | { |
| 97 | return s->size - s->length - 1; |
| 98 | } |
| 99 | |
| 100 | static inline void strbuf_ensure_empty_length(strbuf_t *s, int len) |
| 101 | { |
no outgoing calls
no test coverage detected