mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-27 13:53:17 +00:00
11 lines
168 B
C++
11 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
|