misc/libphysfs/lzma/CPP/Common/StringToInt.h
branchui-scaling
changeset 15283 c4fd2813b127
parent 13390 0135e64c6c66
parent 15279 7ab5cf405686
child 15663 d92eeb468dad
equal deleted inserted replaced
13390:0135e64c6c66 15283:c4fd2813b127
     1 // Common/StringToInt.h
       
     2 
       
     3 #ifndef __COMMON_STRINGTOINT_H
       
     4 #define __COMMON_STRINGTOINT_H
       
     5 
       
     6 #include <string.h>
       
     7 #include "Types.h"
       
     8 
       
     9 UInt64 ConvertStringToUInt64(const char *s, const char **end);
       
    10 UInt64 ConvertOctStringToUInt64(const char *s, const char **end);
       
    11 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end);
       
    12 
       
    13 Int64 ConvertStringToInt64(const char *s, const char **end);
       
    14 
       
    15 #endif
       
    16 
       
    17