modified ft_putendl behavior when dealing with NULL

This commit is contained in:
Tanguy MAZE 2019-01-13 17:45:57 +01:00
parent 2e3500751e
commit 19d3e23b74
3 changed files with 4 additions and 6 deletions

View File

@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */ /* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/09 13:55:29 by tmaze #+# #+# */ /* Created: 2018/04/09 13:55:29 by tmaze #+# #+# */
/* Updated: 2018/04/09 16:46:33 by tmaze ### ########.fr */ /* Updated: 2018/11/28 14:46:12 by tmaze ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */

View File

@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */ /* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/07 22:37:44 by tmaze #+# #+# */ /* Created: 2018/04/07 22:37:44 by tmaze #+# #+# */
/* Updated: 2018/04/10 14:24:26 by tmaze ### ########.fr */ /* Updated: 2019/01/13 17:44:21 by tmaze ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -15,8 +15,6 @@
void ft_putendl(char const *s) void ft_putendl(char const *s)
{ {
if (s != NULL) if (s != NULL)
{
ft_putstr(s); ft_putstr(s);
ft_putchar('\n'); ft_putchar('\n');
} }
}

View File

@ -6,7 +6,7 @@
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */ /* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/04 16:55:29 by tmaze #+# #+# */ /* Created: 2018/04/04 16:55:29 by tmaze #+# #+# */
/* Updated: 2018/04/08 14:13:22 by tmaze ### ########.fr */ /* Updated: 2019/01/10 17:37:08 by tmaze ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */