| 120 | } |
| 121 | |
| 122 | static inline void strbuf_append_char_unsafe(strbuf_t *s, const char c) |
| 123 | { |
| 124 | s->buf[s->length++] = c; |
| 125 | } |
| 126 | |
| 127 | static inline void strbuf_append_mem(strbuf_t *s, const char *c, int len) |
| 128 | { |
no outgoing calls
no test coverage detected