crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/test/fuzz/parse_numbers.cpp]
#[fuzz_test] fn parse_numbers() {
todo!();
/*
const std::string random_string(buffer.begin(), buffer.end());
(c_void)ParseMoney(random_string);
uint8_t u8;
(c_void)ParseUInt8(random_string, &u8);
uint16_t u16;
(c_void)ParseUInt16(random_string, &u16);
int32_t i32;
(c_void)ParseInt32(random_string, &i32);
(c_void)LocaleIndependentAtoi<int>(random_string);
uint32_t u32;
(c_void)ParseUInt32(random_string, &u32);
int64_t i64;
(c_void)LocaleIndependentAtoi<int64_t>(random_string);
(c_void)ParseFixedPoint(random_string, 3, &i64);
(c_void)ParseInt64(random_string, &i64);
uint64_t u64;
(c_void)ParseUInt64(random_string, &u64);
*/
}