rlm@1: // Common/StringToInt.h rlm@1: rlm@1: #ifndef __COMMON_STRINGTOINT_H rlm@1: #define __COMMON_STRINGTOINT_H rlm@1: rlm@1: #include rlm@1: #include "Types.h" rlm@1: rlm@1: UInt64 ConvertStringToUInt64(const char *s, const char **end); rlm@1: UInt64 ConvertOctStringToUInt64(const char *s, const char **end); rlm@1: UInt64 ConvertHexStringToUInt64(const char *s, const char **end); rlm@1: UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end); rlm@1: rlm@1: Int64 ConvertStringToInt64(const char *s, const char **end); rlm@1: rlm@1: #endif rlm@1: rlm@1: