Variants for copy(), for various argument combinations. */
| 385 | Variants for copy(), for various argument combinations. |
| 386 | */ |
| 387 | void copy(const char *str, size_t length) |
| 388 | { |
| 389 | copy(str, length, system_charset_info); |
| 390 | } |
| 391 | void copy(const char *str) |
| 392 | { |
| 393 | copy(str, (str ? strlen(str) : 0), system_charset_info); |
no test coverage detected