| 137 | } |
| 138 | |
| 139 | static void append_raw(char *buf, size_t bufsz, size_t *pos, const char *s) { |
| 140 | if (!s) { |
| 141 | return; |
| 142 | } |
| 143 | while (*s) { |
| 144 | append_char(buf, bufsz, pos, *s++); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | static void append_text_atom(char *buf, size_t bufsz, size_t *pos, const char *s) { |
| 149 | if (!s) { |
no test coverage detected