diff options
Diffstat (limited to 'core/fxcrt/fx_string.h')
-rw-r--r-- | core/fxcrt/fx_string.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/fxcrt/fx_string.h b/core/fxcrt/fx_string.h index 670aa4d4b7..2cf823738a 100644 --- a/core/fxcrt/fx_string.h +++ b/core/fxcrt/fx_string.h @@ -7,8 +7,6 @@ #ifndef CORE_FXCRT_FX_STRING_H_ #define CORE_FXCRT_FX_STRING_H_ -#include <stdint.h> - #include "core/fxcrt/bytestring.h" #include "core/fxcrt/widestring.h" @@ -21,6 +19,7 @@ WideString FX_UTF8Decode(const ByteStringView& bsStr); float FX_atof(const ByteStringView& str); float FX_atof(const WideStringView& wsStr); +bool FX_atonum(const ByteStringView& str, void* pData); size_t FX_ftoa(float f, char* buf); #endif // CORE_FXCRT_FX_STRING_H_ |