/
githubmirror
/
icu
Обзор
Документация
Войти
/
githubmirror
/
icu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
icu4c/source/test/fuzzer/locale_util.cpp
12 строк
358 B
Norbert Runge
ICU-20638 Renames fuzzer target files to end with the .cpp suffix. Was .cc.
30 май 2019, 02:06
30 май 2019, 02:06
633a975
Код
Авторство
О чём код?
// © 2019 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html // Helper method for ICU locale fuzzer. #include "locale_util.h" #include <string> std::string MakeZeroTerminatedInput(const uint8_t *data, int32_t size) { return size == 0 ? "" : std::string(reinterpret_cast<const char *>(data), size); }