c++ - std::atoll with VC++ -
c++ - std::atoll with VC++ -
i have been using std::atoll cstdlib convert string int64_t gcc. function not seem available on windows toolchain (using visual studio express 2010). best alternative?
i interested in converting strings uint64_t. integer definitions taken cstdint.
msvc have _atoi64 , similar functions, see here
for unsigned 64 bit types, see _strtoui64
c++ int64 uint64 strtol
Comments
Post a Comment