Commit 7ad8608f authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

include: Add strtoll, strtoll_l, strtoull, and strtoull_l.

parent 0ab4f089
......@@ -210,6 +210,10 @@ double __cdecl strtod(const char*,char**);
double __cdecl strtold(const char*,char**);
__msvcrt_long __cdecl strtol(const char*,char**,int);
__msvcrt_ulong __cdecl strtoul(const char*,char**,int);
__int64 __cdecl strtoll(const char*,char**,int);
__int64 __cdecl strtoll_l(const char*,char**,int,_locale_t);
unsigned __int64 __cdecl strtoull(const char*,char**,int);
unsigned __int64 __cdecl strtoull_l(const char*,char**,int,_locale_t);
__int64 __cdecl _strtoi64(const char*,char**,int);
__int64 __cdecl _strtoi64_l(const char*,char**,int,_locale_t);
unsigned __int64 __cdecl _strtoui64(const char*,char**,int);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment