19 lines
999 B
C
19 lines
999 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* error_msg.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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);
|
|
}
|