StringToInt.h revision baa3858d3f5d128a5c8466b700098109edcad5f2
1// Common/StringToInt.h
2
3#ifndef __COMMON_STRINGTOINT_H
4#define __COMMON_STRINGTOINT_H
5
6#include <string.h>
7#include "Types.h"
8
9UInt64 ConvertStringToUInt64(const char *s, const char **end);
10UInt64 ConvertOctStringToUInt64(const char *s, const char **end);
11UInt64 ConvertHexStringToUInt64(const char *s, const char **end);
12UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end);
13
14Int64 ConvertStringToInt64(const char *s, const char **end);
15
16#endif
17
18
19