shithub: cstory

ref: a12bd7a4b7b4f482907f000b08889d7777873e59
dir: /src/Generic.cpp/

View raw version
#include <stdint.h>

bool IsShiftJIS(uint8_t c)
{
	if ( c > 0x80 && c < 0xA0 )
		return true;
	if ( c < 0xE0 || c >= 0xF0 )
		return false;
	return true;
}