1 /*******************************************************************************************
2 Character set conversion helpers
3 *******************************************************************************************/
4 
5 #ifndef CHARACTER_HELPER_H
6 #define CHARACTER_HELPER_H
7 
8 str_ansi * GetANSIFromUTF8(const str_utf8 * pUTF8);
9 str_ansi * GetANSIFromUTF16(const str_utf16 * pUTF16);
10 str_utf16 * GetUTF16FromANSI(const str_ansi * pANSI);
11 str_utf16 * GetUTF16FromUTF8(const str_utf8 * pUTF8);
12 str_utf8 * GetUTF8FromANSI(const str_ansi * pANSI);
13 str_utf8 * GetUTF8FromUTF16(const str_utf16 * pUTF16);
14 
15 #endif // #ifndef CHARACTER_HELPER_H
16