aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_map_error.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-04 15:21:10 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-04 15:21:10 +0100
commit5db7c4f7d445373d92c41a7cc9aa667e223e5507 (patch)
tree1dff7a6452ad593cf0c7f92d7db35580fb619d94 /src/ft_map_error.c
parentRemoved map print (diff)
download42-cub3d-5db7c4f7d445373d92c41a7cc9aa667e223e5507.tar.gz
42-cub3d-5db7c4f7d445373d92c41a7cc9aa667e223e5507.tar.bz2
42-cub3d-5db7c4f7d445373d92c41a7cc9aa667e223e5507.tar.xz
42-cub3d-5db7c4f7d445373d92c41a7cc9aa667e223e5507.tar.zst
42-cub3d-5db7c4f7d445373d92c41a7cc9aa667e223e5507.zip
tryna save
Diffstat (limited to 'src/ft_map_error.c')
-rw-r--r--src/ft_map_error.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/ft_map_error.c b/src/ft_map_error.c
deleted file mode 100644
index b777415..0000000
--- a/src/ft_map_error.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_map_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_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(4, clist));
-}