From 66635d69fa00e335a091d7e6f2b358cbaaf205e4 Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Tue, 16 Jul 2019 12:58:13 +0200 Subject: c09 passed, c10 start, exam00 and exam01 --- exam00/subjects/5-1-ft_atoi/subject.en.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 exam00/subjects/5-1-ft_atoi/subject.en.txt (limited to 'exam00/subjects/5-1-ft_atoi/subject.en.txt') 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); -- cgit