From 6cb01d2fd8a6b07ef3ddaa8bb322f30c545316e7 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 17 Oct 2019 09:09:41 +0200 Subject: More protection - substr if start > str length - all list functions check for NULL reference - not modifying const pointers --- ft_putstr.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'ft_putstr.c') diff --git a/ft_putstr.c b/ft_putstr.c index 0e87847..ac402ed 100644 --- a/ft_putstr.c +++ b/ft_putstr.c @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:52:12 by cacharle #+# #+# */ -/* Updated: 2019/10/07 09:52:15 by cacharle ### ########.fr */ +/* Updated: 2019/10/17 09:06:58 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,6 +14,12 @@ void ft_putstr(char const *s) { - while (*s) - write(STDOUT_FILENO, s++, 1); + int i; + + i = 0; + while (s[i]) + { + write(STDOUT_FILENO, &s[i], 1); + i++; + } } -- cgit