I am using std :: local () for MBS for WCS in the Android NDK.
But...
std::locale::global(std::locale("kor"))
std::locale::global(std::locale("ko"))
std::locale::global(std::locale("ko_KR"))
std::locale::global(std::locale("ko_KR.eucKr"))
std::locale::global(std::locale("ko_KR.euckr"))
std::locale::global(std::locale("ko_KR.EUCKR"))
All lead to failures.
and ...
std::locale::global(std::locale("en_US.UTF-8"))also falls.
Is std::locale()Android NDK Supported ?
My STL library
source
share