| 93 | } |
| 94 | |
| 95 | static inline void strbuf_ensure_empty_length(strbuf_t *s, int len) |
| 96 | { |
| 97 | if (len > strbuf_empty_length(s)) |
| 98 | strbuf_resize(s, s->length + len); |
| 99 | } |
| 100 | |
| 101 | static inline char *strbuf_empty_ptr(strbuf_t *s) |
| 102 | { |
no test coverage detected