]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/fuzzer/fuzzer_driver.cpp
1 // © 2019 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
9 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data
, size_t size
);
11 int main(int argc
, char* argv
[])
15 const char *fuzzer_data
= "abc123";
17 LLVMFuzzerTestOneInput((const uint8_t *) fuzzer_data
, strlen(fuzzer_data
));