| 119 | } |
| 120 | |
| 121 | static void append_raw(char *buf, size_t bufsz, size_t *pos, const char *s) { |
| 122 | if (!s) { |
| 123 | return; |
| 124 | } |
| 125 | while (*s) { |
| 126 | append_char(buf, bufsz, pos, *s++); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | static void append_text_atom(char *buf, size_t bufsz, size_t *pos, const char *s) { |
| 131 | if (!s) { |
no test coverage detected