Zelda64Recomp/src/recomp/euc-jp.h

12 lines
168 B
C++

#ifndef __EUC_JP_H__
#define __EUC_JP_H__
#include <string>
#include <string_view>
namespace Encoding {
std::string decode_eucjp(std::string_view src);
}
#endif