]> git.saurik.com Git - apple/icu.git/blob - icuSources/test/fuzzer/uloc_is_right_to_left_fuzzer.cpp
ICU-66108.tar.gz
[apple/icu.git] / icuSources / test / fuzzer / uloc_is_right_to_left_fuzzer.cpp
1 // © 2019 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3
4 #include <string>
5
6 #include "locale_util.h"
7 #include "unicode/uloc.h"
8
9 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
10 const std::string input = MakeZeroTerminatedInput(data, size);
11
12 uloc_isRightToLeft(input.c_str());
13
14 return 0;
15 }