blob: 3413bbb4283147f6b052b4f4b784001768ee2b1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_map_error.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2020/02/02 17:19:30 by rbousset #+# ## ## #+# */
/* Updated: 2020/02/02 17:19:30 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <libft.h>
#include <cub3d.h>
#include <unistd.h>
int
ft_map_error(t_cub *clist)
{
ft_dprintf(STDERR_FILENO, "Error\n");
ft_dprintf(STDERR_FILENO,
"\033[1;31mMap error: line %zu\033[0m\n", clist->line_chk);
return (ft_exit(1, clist));
}
|