00001
00002
00003
00004 #ifndef OSL_SJIS2EUC_H
00005 #define OSL_SJIS2EUC_H
00006
00007 #include <string>
00008
00009 namespace osl
00010 {
00011 namespace misc
00012 {
00018 std::string sjis2euc(const std::string& str);
00019 void sjis2euc(unsigned char& c1, unsigned char& c2);
00020 }
00021 }
00022
00023 #endif
00024
00025
00026
00027