aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_map_error.c
blob: 263eee83bfc6baac6a134ab762d791ab83c080cc (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   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(t_cub *clist)
{
	ft_dprintf(STDERR_FILENO, "Error\n");
	ft_dprintf(STDERR_FILENO,
		"\033[1;31mMap error: line %zu\033[0m\n", clist->mlist->line_chk);
	return (ft_exit(4, clist));
}