21 lines
990 B
C
21 lines
990 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putendl.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchivert <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/04/06 18:21:32 by tchivert #+# #+# */
|
|
/* Updated: 2019/09/04 05:13:30 by tchivert ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_putendl(char const *s)
|
|
{
|
|
if (s)
|
|
ft_putstr(s);
|
|
ft_putchar('\n');
|
|
}
|