tags:

views:

82

answers:

2

Do exist on msvc and mingw a 64 bits equivalent function to do it ?

Aparently K&R was thinking that 2^32 was enough

+4  A: 

Use _strtoi64 or _strtoui64

Evän Vrooksövich
+3  A: 

strtoll() is in C99 and POSIX.1-2001.

gnud
Doesn't seem like this exists for msvc, although it seems kinda identical to __strtoi64.
gnud