aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_ATOI.c
diff options
context:
space:
mode:
Diffstat (limited to 'test_deliverable/testcases/test_ATOI.c')
-rw-r--r--test_deliverable/testcases/test_ATOI.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test_deliverable/testcases/test_ATOI.c b/test_deliverable/testcases/test_ATOI.c
new file mode 100644
index 0000000..32e4f69
--- /dev/null
+++ b/test_deliverable/testcases/test_ATOI.c
@@ -0,0 +1,7 @@
+int atoi(const char *);
+
+int atoi_(char* str_)
+{
+ int a = atoi(str_);
+ return a;
+}