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