Mercurial > vba-clojure
annotate src/win32/7zip/7z/CPP/Common/StringToInt.h @ 3:b05d00f19d80
fix some formatting
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:33:11 -0600 |
parents | f9f4f1b99eed |
children |
rev | line source |
---|---|
rlm@1 | 1 // Common/StringToInt.h |
rlm@1 | 2 |
rlm@1 | 3 #ifndef __COMMON_STRINGTOINT_H |
rlm@1 | 4 #define __COMMON_STRINGTOINT_H |
rlm@1 | 5 |
rlm@1 | 6 #include <string.h> |
rlm@1 | 7 #include "Types.h" |
rlm@1 | 8 |
rlm@1 | 9 UInt64 ConvertStringToUInt64(const char *s, const char **end); |
rlm@1 | 10 UInt64 ConvertOctStringToUInt64(const char *s, const char **end); |
rlm@1 | 11 UInt64 ConvertHexStringToUInt64(const char *s, const char **end); |
rlm@1 | 12 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end); |
rlm@1 | 13 |
rlm@1 | 14 Int64 ConvertStringToInt64(const char *s, const char **end); |
rlm@1 | 15 |
rlm@1 | 16 #endif |
rlm@1 | 17 |
rlm@1 | 18 |