mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 23:25:04 +01:00
12 lines
168 B
C++
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
|