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