| 3123 | } |
| 3124 | |
| 3125 | int xwcstoutf(char *utf, const wchar_t *wcs, size_t utflen) |
| 3126 | { |
| 3127 | if (!wcs || !utf || utflen < 1) { |
| 3128 | errno = EINVAL; |
| 3129 | return -1; |
| 3130 | } |
| 3131 | utflen = WideCharToMultiByte(CP_UTF8, 0, wcs, -1, utf, utflen, NULL, NULL); |
| 3132 | if (utflen) |
| 3133 | return utflen - 1; |
| 3134 | errno = ERANGE; |
| 3135 | return -1; |
| 3136 | } |
| 3137 | |
| 3138 | static void setup_windows_environment(void) |
| 3139 | { |
no outgoing calls
no test coverage detected