Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/test-integer-limits
/
.
/
test
/
other
/
test_asan_strncpy.c
blob: 00be2485eccc5a1b08fb3b4faf53e40c773f722d [
file
] [
edit
]
#include
<string.h>
int
main
()
{
char
from
[]
=
"x"
;
char
to
[
4
];
strncpy
(
to
,
from
,
sizeof
(
to
));
return
0
;
}