/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* error_msg.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/03/16 14:14:47 by jhalford #+# #+# */ /* Updated: 2017/03/16 14:17:29 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" int error_msg(char *msg) { ft_dprintf(2, "{red}%s{eoc}\n", msg); return (-1); }