#include <math.h>
#include <iterator>
#include <limits>
#include "build/build_config.h"
#include "core/fxcrt/compiler_specific.h"
#include "core/fxcrt/fx_string.h"
#include "core/fxcrt/fx_system.h"
#include "testing/gtest/include/gtest/gtest.h"
#if !BUILDFLAG(IS_WIN)
namespace {
const char kSentinel = …;
void Check32BitBase16Itoa(int32_t input, const char* expected_output) { … }
void Check32BitBase10Itoa(int32_t input, const char* expected_output) { … }
void Check32BitBase2Itoa(int32_t input, const char* expected_output) { … }
void Check64BitBase16Itoa(int64_t input, const char* expected_output) { … }
void Check64BitBase10Itoa(int64_t input, const char* expected_output) { … }
void Check64BitBase2Itoa(int64_t input, const char* expected_output) { … }
}
TEST(fxcrt, FXSYS_roundf) { … }
TEST(fxcrt, FXSYS_round) { … }
TEST(fxcrt, FXSYS_itoa_InvalidRadix) { … }
TEST(fxcrt, FXSYS_itoa) { … }
TEST(fxcrt, FXSYS_i64toa_InvalidRadix) { … }
TEST(fxcrt, FXSYS_i64toa) { … }
#endif
TEST(fxcrt, FXSYS_wcsftime) { … }
TEST(fxcrt, FXSYS_atoi) { … }
TEST(fxcrt, FXSYS_atoi64) { … }
TEST(fxcrt, FXSYS_wtoi) { … }
TEST(fxcrt, FXSYS_atoui) { … }