From 14914f50c3de6c5444e13cf67db064b03c1c90ef Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 16 Jul 2019 12:58:13 +0200 Subject: c09 passed, c10 start, exam00 and exam01 --- exam00/rendu/ft_putstr/ft_putstr.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 exam00/rendu/ft_putstr/ft_putstr.c (limited to 'exam00/rendu/ft_putstr') diff --git a/exam00/rendu/ft_putstr/ft_putstr.c b/exam00/rendu/ft_putstr/ft_putstr.c new file mode 100755 index 0000000..aea8468 --- /dev/null +++ b/exam00/rendu/ft_putstr/ft_putstr.c @@ -0,0 +1,10 @@ +#include + +void ft_putstr(char *str) +{ + while (*str) + { + write(1, str, 1); + str++; + } +} -- cgit