| 666 | */ |
| 667 | |
| 668 | size_t my_vsnprintf(char *to, size_t n, const char* fmt, va_list ap) |
| 669 | { |
| 670 | return my_vsnprintf_ex(&my_charset_latin1, to, n, fmt, ap); |
| 671 | } |
| 672 | |
| 673 | |
| 674 | size_t my_snprintf(char* to, size_t n, const char* fmt, ...) |
no test coverage detected