aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_ATOI.c
blob: 32e4f69df6cce7edbf9fda862c3d3abcbec4fc79 (plain)
1
2
3
4
5
6
7
int atoi(const char *);

int atoi_(char* str_)
{
    int a = atoi(str_);
    return a;
}