Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/webgpu_testing
/
.
/
test
/
other
/
test_icu.cpp
blob: 7224803da9de66337250b8d58abcd79eb208666d [
file
] [
edit
]
#include
<unicode/ucnv.h>
int
main
()
{
UErrorCode
e
;
UConverter
*
p
=
ucnv_open
(
"UTF8"
,
&
e
);
if
(
p
)
{
ucnv_close
(
p
);
}
return
0
;
}