| 132 | } |
| 133 | |
| 134 | static inline void strbuf_append_mem_unsafe(strbuf_t *s, const char *c, int len) |
| 135 | { |
| 136 | memcpy(s->buf + s->length, c, len); |
| 137 | s->length += len; |
| 138 | } |
| 139 | |
| 140 | static inline void strbuf_ensure_null(strbuf_t *s) |
| 141 | { |
no outgoing calls
no test coverage detected