aboutsummaryrefslogblamecommitdiffstats
path: root/unittest.cpp
blob: eaf4466a2ce8667b47e45df209c5ce7bfc3eacaf (plain) (tree)
1
2
3
4
5
6
7
8
9

                    


          



                                                                
 
#include <iostream>
using namespace std;

int main()
{
    //cout << strtol("+123999999999999999999", NULL, 10) <<endl;
    //cout <<errno <<endl;
    cout << strtol("+9223372036854775807", NULL, 10) <<endl;
    cout <<errno <<endl;
}