2.1.6.33 _strtoi64


Description

Converts string to an __int64.

Syntax

__int64 _strtoi64( const char * nptr, char ** endptr, int base )

Parameters

nptr
[input] Points to a character string to convert.
endptr
[output] if not NULL, returns a string beginning with the first character that _strtoi64() does not attempt to convert.
base
[input] Number base to use.

Return

returns the value represented in the string nptr, returns _I64_MAX or _I64_MIN if overflow, returns 0 if no conversion can be performed.

Examples

Remark

See Also

Header to Included

origin.h

Reference