| 114 | } |
| 115 | |
| 116 | static inline void strbuf_append_char(strbuf_t *s, const char c) |
| 117 | { |
| 118 | strbuf_ensure_empty_length(s, 1); |
| 119 | s->buf[s->length++] = c; |
| 120 | } |
| 121 | |
| 122 | static inline void strbuf_append_char_unsafe(strbuf_t *s, const char c) |
| 123 | { |
no test coverage detected