Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Common/StringToInt.h')
-rwxr-xr-xCPP/Common/StringToInt.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/CPP/Common/StringToInt.h b/CPP/Common/StringToInt.h
index c0d860ef..cd99f17e 100755
--- a/CPP/Common/StringToInt.h
+++ b/CPP/Common/StringToInt.h
@@ -1,9 +1,8 @@
// Common/StringToInt.h
-#ifndef __COMMON_STRINGTOINT_H
-#define __COMMON_STRINGTOINT_H
+#ifndef __COMMON_STRING_TO_INT_H
+#define __COMMON_STRING_TO_INT_H
-#include <string.h>
#include "Types.h"
UInt64 ConvertStringToUInt64(const char *s, const char **end);
@@ -12,7 +11,6 @@ UInt64 ConvertHexStringToUInt64(const char *s, const char **end);
UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end);
Int64 ConvertStringToInt64(const char *s, const char **end);
+Int64 ConvertStringToInt64(const wchar_t *s, const wchar_t **end);
#endif
-
-