aboutsummaryrefslogtreecommitdiff
path: root/exam00/subjects/5-1-ft_atoi/subject.fr.txt
diff options
context:
space:
mode:
Diffstat (limited to 'exam00/subjects/5-1-ft_atoi/subject.fr.txt')
-rw-r--r--exam00/subjects/5-1-ft_atoi/subject.fr.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/exam00/subjects/5-1-ft_atoi/subject.fr.txt b/exam00/subjects/5-1-ft_atoi/subject.fr.txt
new file mode 100644
index 0000000..2c9977c
--- /dev/null
+++ b/exam00/subjects/5-1-ft_atoi/subject.fr.txt
@@ -0,0 +1,12 @@
+Assignment name : ft_atoi
+Expected files : ft_atoi.c
+Allowed functions: None
+--------------------------------------------------------------------------------
+
+Écrire une fonction qui convertit une chaîne en un entier (type int) et le retourne.
+
+Marche comme la fonction standard atoi(const char *str), voir le man.
+
+La fonction doit être prototypée comme suit:
+
+int ft_atoi(const char *str);