Mercurial > vba-clojure
view src/win32/7zip/7z/CPP/Common/StringToInt.h @ 6:458a4f18f3cd
working on lua generation
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:48:33 -0600 |
parents | f9f4f1b99eed |
children |
line wrap: on
line source
1 // Common/StringToInt.h3 #ifndef __COMMON_STRINGTOINT_H4 #define __COMMON_STRINGTOINT_H6 #include <string.h>7 #include "Types.h"9 UInt64 ConvertStringToUInt64(const char *s, const char **end);10 UInt64 ConvertOctStringToUInt64(const char *s, const char **end);11 UInt64 ConvertHexStringToUInt64(const char *s, const char **end);12 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end);14 Int64 ConvertStringToInt64(const char *s, const char **end);16 #endif