Imported Upstream version 9.20
[platform/upstream/7zip.git] / CPP / Common / StringToInt.h
1 // Common/StringToInt.h\r
2 \r
3 #ifndef __COMMON_STRINGTOINT_H\r
4 #define __COMMON_STRINGTOINT_H\r
5 \r
6 #include <string.h>\r
7 #include "Types.h"\r
8 \r
9 UInt64 ConvertStringToUInt64(const char *s, const char **end);\r
10 UInt64 ConvertOctStringToUInt64(const char *s, const char **end);\r
11 UInt64 ConvertHexStringToUInt64(const char *s, const char **end);\r
12 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end);\r
13 \r
14 Int64 ConvertStringToInt64(const char *s, const char **end);\r
15 \r
16 #endif\r
17 \r
18 \r