ref: 63402619f6de96adeb1a45dff7a558d745448a1c
dir: /src/pt2_unicode.c/
#include <wchar.h> #include "pt2_unicode.h" // this is probably broken, but it "works" for now uint32_t unicharToAnsi(char *dstBuffer, const UNICHAR *inputString, uint32_t maxDstLen) { uint32_t i; UNICHAR ch; if (inputString == NULL || dstBuffer == NULL) return 0; i = 0; while (i < maxDstLen && inputString[i] != '\0') { ch = inputString[i]; #ifdef _WIN32 if (ch >= 256) #else if ((signed)ch < 0) #endif { *dstBuffer++ = '?'; #ifdef _WIN32 if ((ch & 0xFF00) == 0xD800) // lead surrogate, skip the next widechar (trail) i++; #endif } else { *dstBuffer = (char)ch; if ((signed)*dstBuffer < ' ') *dstBuffer = '?'; dstBuffer++; } i++; } if (maxDstLen > 1) *dstBuffer = '\0'; return i; }