My Project
sjis2euc.h
Go to the documentation of this file.
1/* sjis2euc.h
2 */
3
4#ifndef OSL_SJIS2EUC_H
5#define OSL_SJIS2EUC_H
6
7#include <string>
8
9namespace osl
10{
11 namespace misc
12 {
18 std::string sjis2euc(const std::string& str);
19 void sjis2euc(unsigned char& c1, unsigned char& c2);
20 }
21}
22
23#endif /* OSL_SJIS2EUC_H */
24// ;;; Local Variables:
25// ;;; mode:c++
26// ;;; c-basic-offset:2
27// ;;; End:
std::string sjis2euc(const std::string &str)
Convert character encoding from Shift_JIS to EUC-JP.
Definition sjis2euc.cc:9