| 78 | } |
| 79 | |
| 80 | LPCSTR StringUTF8ToChar(LPCSTR sUTF8, CStringA &sChar, int iChars/* = -1*/, char chDef/* = '?'*/, UINT codepage/* = CP_ACP*/) |
| 81 | { |
| 82 | return StringWCharToChar(CStringWCharFromUTF8(sUTF8, iChars), sChar, iChars, chDef, codepage); |
| 83 | } |
| 84 | #endif |
| 85 | |
| 86 | template <typename SRC_T, typename DEST_T> |
no test coverage detected