ref: c84f49f1dcd521fdbc70613d7ab4d5f505d7c8c0 dir: /src/Generic.cpp/
#include <stdint.h> bool IsShiftJIS(uint8_t c) { if ( c > 0x80 && c < 0xA0 ) return true; if ( c < 0xE0 || c >= 0xF0 ) return false; return true; }