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

StringToInt.h « Common - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c7961de2b484badd76723104b3be7d53974faaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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