_atoi64 (NTDLL.@)
LONGLONG _atoi64 ( const char* str )
Convert a string to a large integer.
str | [In] | String to be converted. |
Success: The integer value represented by str.
Failure: 0. Note that this cannot be distinguished from a successful return, if the string contains "0".
- Accepts: {whitespace} [+|-] {digits}
- No check is made for value overflow, only the lower 64 bits are assigned.
- If str is NULL it crashes, as the native function does.
Declared in "include/msvcrt/stdlib.h". gitlab.winehq.org/wine/wine/blob/master/include/msvcrt/stdlib.h
Implemented in "dlls/ntdll/string.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/string.c
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.