StringToInt.h 398 B

1234567891011121314151617
  1. // Common/StringToInt.h
  2. #ifndef __COMMON_STRINGTOINT_H
  3. #define __COMMON_STRINGTOINT_H
  4. #include <string.h>
  5. #include "Types.h"
  6. UInt64 ConvertStringToUInt64(const char *s, const char **end);
  7. UInt64 ConvertOctStringToUInt64(const char *s, const char **end);
  8. UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end);
  9. Int64 ConvertStringToInt64(const char *s, const char **end);
  10. #endif