mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-22 02:32:04 -08:00
14 lines
238 B
C++
14 lines
238 B
C++
#ifndef __cp932_h__
|
|
#define __cp932_h__
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
#include <sstream>
|
|
|
|
using namespace std;
|
|
|
|
wstring cp932_convert( vector<char> dat );
|
|
vector<char> cp932_convert( wstring str );
|
|
|
|
#endif // __cp932_h__
|