My Project
eucToLang.h
Go to the documentation of this file.
1/* eucToLang.h
2 */
3#ifndef OSL_MISC_EUCTOLANG_H
4#define OSL_MISC_EUCTOLANG_H
5
6#include <string>
7
8namespace osl
9{
10 namespace misc
11 {
12 // Converts character encoding from EUC-JP to a native encoding.
13 // This works on both Linux and Windows.
14 std::string eucToLang(const std::string& src);
15 }
16}
17
18#endif /* OSL_MISC_EUCTOLANG_H */
19// ;;; Local Variables:
20// ;;; mode:c++
21// ;;; c-basic-offset:2
22// ;;; End:
std::string eucToLang(const std::string &src)
Definition eucToLang.cc:14