/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_exit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/01/23 20:00:55 by bchanot #+# #+# */ /* Updated: 2016/02/09 17:03:50 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" #include void ft_exit(const char *str) { if (str != NULL) ft_putendl_fd(str, 1); exit(EXIT_SUCCESS); }