mirror of
https://github.com/wiidev/usbloadergx.git
synced 2025-07-26 21:37:32 +02:00
10 lines
137 B
C++
10 lines
137 B
C++
#ifndef SJIS_H
|
|
#define SJIS_H
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
std::string sj2utf8(const std::string &input);
|
|
|
|
#endif /* SJIS_H */
|