DEBSOURCES
Skip Quicknav
sources / emscripten / 3.1.69%2Bdfsg-3 / test / other / test_icu.cpp
12345678910
#include <unicode/ucnv.h> int main() { UErrorCode e; UConverter *p = ucnv_open("UTF8", &e); if (p) { ucnv_close(p); } return 0; }