10 lines
121 B
C++
10 lines
121 B
C++
#ifndef ICONVLITE_H
|
|
#define ICONVLITE_H
|
|
|
|
using namespace std;
|
|
|
|
string cp2utf(string s);
|
|
string utf2cp(string s);
|
|
|
|
#endif
|