blob: 72969fd3d77b2675c26245ec6b75e4c01fef5897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef LH_UTF8_STRINGS_H
#define LH_UTF8_STRINGS_H
#include "os_types.h"
#include "types.h"
namespace litehtml
{
class utf8_to_wchar
{
const byte* m_utf8;
std::wstring m_str;
public:
utf8_to_wchar(const char* val);
operator const wchar_t*() const
{
return m_str.c_str();
}
private:
ucode_t getb()
{
if (!(*m_utf8)) return 0;
return *m_utf8++;
}
ucode_t get_next_utf8(ucode_t val)
{
return (val & 0x3f);
}
ucode_t get_char();
};
class wchar_to_utf8
{
std::string m_str;
public:
wchar_to_utf8(const std::wstring& val);
operator const char*() const
{
return m_str.c_str();
}
const char* c_str() const
{
return m_str.c_str();
}
};
#define litehtml_from_wchar(str) litehtml::wchar_to_utf8(str)
#define litehtml_to_wchar(str) litehtml::utf8_to_wchar(str)
}
#endif // LH_UTF8_STRINGS_H
|