summaryrefslogtreecommitdiff
path: root/core/utf8.h
blob: b386a3ce88b6e1827cf20b99954a8560e5e55fdc (plain)
1
2
3
4
5
6
7
8
#ifndef UTF8_H
#define UTF8_H

std::string toUTF8(std::wstring str);
std::string toUTF8(std::string str);
std::wstring toUTF16(std::string str);

#endif