aboutsummaryrefslogtreecommitdiff
path: root/exam00/subjects/5-1-ft_atoi/subject.en.txt
diff options
context:
space:
mode:
Diffstat (limited to 'exam00/subjects/5-1-ft_atoi/subject.en.txt')
-rw-r--r--exam00/subjects/5-1-ft_atoi/subject.en.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/exam00/subjects/5-1-ft_atoi/subject.en.txt b/exam00/subjects/5-1-ft_atoi/subject.en.txt
new file mode 100644
index 0000000..ebfe92b
--- /dev/null
+++ b/exam00/subjects/5-1-ft_atoi/subject.en.txt
@@ -0,0 +1,13 @@
+Assignment name : ft_atoi
+Expected files : ft_atoi.c
+Allowed functions: None
+--------------------------------------------------------------------------------
+
+Write a function that converts the string argument str to an integer (type int)
+and returns it.
+
+It works much like the standard atoi(const char *str) function, see the man.
+
+Your function must be declared as follows:
+
+int ft_atoi(const char *str);