* Append the given string to the given buffer */
| 1284 | * Append the given string to the given buffer |
| 1285 | */ |
| 1286 | static void |
| 1287 | xo_data_escape (xo_handle_t *xop, const char *str, ssize_t len) |
| 1288 | { |
| 1289 | xo_buf_escape(xop, &xop->xo_data, str, len, 0); |
| 1290 | } |
| 1291 | |
| 1292 | #ifdef LIBXO_NO_RETAIN |
| 1293 | /* |
no test coverage detected