bolt/bootstrap/cxx/deps/icu/source/test/fuzzer/fuzzer_utils.h
Sam Vervaeck 285f33e93c Add 'bootstrap/cxx/' from commit '7c1a929e9a3d3abb1e2113f531588e059ad5be8c'
git-subtree-dir: bootstrap/cxx
git-subtree-mainline: b732e418cb
git-subtree-split: 7c1a929e9a
2024-01-15 14:04:51 +01:00

24 lines
549 B
C

// © 2019 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#ifndef FUZZER_UTILS_H_
#define FUZZER_UTILS_H_
#include <assert.h>
#include "unicode/locid.h"
struct IcuEnvironment {
IcuEnvironment() {
// nothing to initialize yet;
}
};
const icu::Locale& GetRandomLocale(uint16_t rnd) {
int32_t num_locales = 0;
const icu::Locale* locales = icu::Locale::getAvailableLocales(num_locales);
assert(num_locales > 0);
return locales[rnd % num_locales];
}
#endif // FUZZER_UTILS_H_