| 125 | } |
| 126 | |
| 127 | static inline void strbuf_append_mem(strbuf_t *s, const char *c, int len) |
| 128 | { |
| 129 | strbuf_ensure_empty_length(s, len); |
| 130 | memcpy(s->buf + s->length, c, len); |
| 131 | s->length += len; |
| 132 | } |
| 133 | |
| 134 | static inline void strbuf_append_mem_unsafe(strbuf_t *s, const char *c, int len) |
| 135 | { |
no test coverage detected