aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_map_error.c
blob: a36507aa4e026849d8695f944786933eb206b81e (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
26
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   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));
}