From 0d8dceea4310fde5706b3ce1c70609d72a38efdf Mon Sep 17 00:00:00 2001 From: John Schoenick Date: Wed, 9 Sep 2015 18:35:41 -0700 Subject: Updated the SDK with the latest code from the TF and HL2 branches. --- sp/src/utils/lzma/C/Common/StringToInt.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sp/src/utils/lzma/C/Common/StringToInt.h (limited to 'sp/src/utils/lzma/C/Common/StringToInt.h') diff --git a/sp/src/utils/lzma/C/Common/StringToInt.h b/sp/src/utils/lzma/C/Common/StringToInt.h new file mode 100644 index 00000000..bb971f62 --- /dev/null +++ b/sp/src/utils/lzma/C/Common/StringToInt.h @@ -0,0 +1,17 @@ +// Common/StringToInt.h + +#ifndef __COMMON_STRINGTOINT_H +#define __COMMON_STRINGTOINT_H + +#include +#include "Types.h" + +UInt64 ConvertStringToUInt64(const char *s, const char **end); +UInt64 ConvertOctStringToUInt64(const char *s, const char **end); +UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end); + +Int64 ConvertStringToInt64(const char *s, const char **end); + +#endif + + -- cgit v1.2.3