* Append the given string to the given buffer, without escaping or * character set conversion. This is the straight copy to the data * buffer with no fanciness. */
| 1275 | * buffer with no fanciness. |
| 1276 | */ |
| 1277 | static void |
| 1278 | xo_data_append (xo_handle_t *xop, const char *str, ssize_t len) |
| 1279 | { |
| 1280 | xo_buf_append(&xop->xo_data, str, len); |
| 1281 | } |
| 1282 | |
| 1283 | /* |
| 1284 | * Append the given string to the given buffer |
no test coverage detected