]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/fuzzer/locale_util.cc
ICU-64232.0.1.tar.gz
[apple/icu.git] / icuSources / test / fuzzer / locale_util.cc
CommitLineData
3d1f044b
A
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
10std::string MakeZeroTerminatedInput(const uint8_t *data, int32_t size) {
11 return size == 0 ? "" : std::string(reinterpret_cast<const char *>(data), size);
12}