#include <precomp.h>
Go to the source code of this file.
◆ _strtoi64()
Definition at line 90 of file strtoi64.c.
91{
93}
__int64 CDECL _strtoi64_l(const char *nptr, char **endptr, int base, _locale_t locale)
◆ _strtoi64_l()
Definition at line 10 of file strtoi64.c.
11{
16
17#ifndef _LIBCNT_
19#endif
20
21#ifndef __REACTOS__
23#endif
26
28
29 if(*nptr == '-') {
31 nptr++;
32 } else if(*nptr == '+')
33 nptr++;
34
37 nptr += 2;
38 }
39
41 if(*nptr=='0')
43 else
45 }
46
47 while(*nptr) {
50
53 break;
55 } else {
57 break;
59 }
61
62 if(negative)
64
65 nptr++;
66
69#ifndef _LIBCNT_
71#endif
72 }
75#ifndef _LIBCNT_
77#endif
78 }
79 else
81 }
82
83 if(endptr)
84 *endptr = (
char*)(got_digit ? nptr :
p);
85
87}
#define MSVCRT_CHECK_PMT(x)
_CRTIMP int *__cdecl _errno(void)
Referenced by _strtoi64().