10 lines
162 B
C
10 lines
162 B
C
|
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
std::string to_utf8(std::wstring wide_string);
|
||
|
std::wstring from_utf8(std::string string);
|
||
|
|
||
|
#endif // UTILS_H
|