]> git.saurik.com Git - apple/icu.git/blob - icuSources/test/fuzzer/locale_util.cc
ICU-64232.0.1.tar.gz
[apple/icu.git] / 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
3
4 // Helper method for ICU locale fuzzer.
5
6 #include "locale_util.h"
7
8 #include <string>
9
10 std::string MakeZeroTerminatedInput(const uint8_t *data, int32_t size) {
11 return size == 0 ? "" : std::string(reinterpret_cast<const char *>(data), size);
12 }