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.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/ft_error.c b/src/ft_error.c
new file mode 100644
index 0000000..b793b96
--- /dev/null
+++ b/src/ft_error.c
@@ -0,0 +1,36 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_error.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:28:55 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:28:55 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <libft.h>
+#include <cub3d.h>
+#include <unistd.h>
+
+int
+ ft_error(const char *errmsg, t_cub *clist)
+{
+ ft_dprintf(STDERR_FILENO, "Error\n");
+ ft_dprintf(STDERR_FILENO,
+ "\033[1;31m%s\033[0m\n",
+ errmsg);
+ return (ft_exit(FT_RET_BMP_ERR, clist));
+}
+
+int
+ ft_map_error(const char *errmsg, t_cub *clist)
+{
+ ft_dprintf(STDERR_FILENO, "Error\n");
+ ft_dprintf(STDERR_FILENO,
+ "\033[1;31mMap error: line %lu: %s\033[0m\n",
+ clist->mlist.line_chk,
+ errmsg);
+ return (ft_exit(FT_RET_MAP_ERR, clist));
+}