Files
easy7zip/Common/StringToInt.h
Igor Pavlov 8c1b5c7b7e 3.13
2016-05-28 00:15:41 +01:00

16 lines
306 B
C
Executable File

// Common/StringToInt.h
#pragma once
#ifndef __COMMON_STRINGTOINT_H
#define __COMMON_STRINGTOINT_H
UINT64 ConvertStringToUINT64(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