aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_error.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_error.c')
-rw-r--r--src/ft_error.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ft_error.c b/src/ft_error.c
index 87be01e..0f2bc97 100644
--- a/src/ft_error.c
+++ b/src/ft_error.c
@@ -34,3 +34,12 @@ int
errmsg);
return (ft_exit(FT_RET_MAP_ERR, clist));
}
+
+int
+ ft_missing_error(const char *err, t_cub *clist)
+{
+ ft_dprintf(STDERR_FILENO, "Error\n");
+ ft_dprintf(STDERR_FILENO,
+ "\033[1;31m%s %s\033[0m\n", FT_ERR_MISS_ELEMENT, err);
+ return (ft_exit(FT_ERR_MISSING, clist));
+}