]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/fuzzer/locale_util.cc
1 // © 2019 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 // Helper method for ICU locale fuzzer.
6 #include "locale_util.h"
10 std::string
MakeZeroTerminatedInput(const uint8_t *data
, int32_t size
) {
11 return size
== 0 ? "" : std::string(reinterpret_cast<const char *>(data
), size
);