BCM WL 6.30.102.9 (r366174)
[tomato.git] / release / src-rt / linux / linux-2.6 / scripts / squashfs / lzma / C / Common / StringToInt.h
blobd5614ef538353950dbac6cc6ea636f0d588b460c
1 // Common/StringToInt.h
3 #ifndef __COMMON_STRINGTOINT_H
4 #define __COMMON_STRINGTOINT_H
6 #include <string.h>
7 #include "Types.h"
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);
13 Int64 ConvertStringToInt64(const char *s, const char **end);
15 #endif