Sign in
android
/
platform
/
ndk
/
06c762d797782f574e40a956613c4e19c504b6c1
/
.
/
tests
/
device
/
fuzzer
/
jni
/
fuzz_test.cpp
blob: 4be6a46097d0e7f71230ebd5cab78621a8fae53d [
file
] [
log
] [
blame
]
#include
<stdint.h>
#include
<stdlib.h>
void
bad_api
(
const
uint8_t
*,
size_t
)
{
}
extern
"C"
int
LLVMFuzzerTestOneInput
(
const
uint8_t
*
data
,
size_t
size
)
{
bad_api
(
data
,
size
);
return
0
;
}