-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_error_map.c
More file actions
23 lines (21 loc) · 1.06 KB
/
ft_error_map.c
File metadata and controls
23 lines (21 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_error_map.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dacuvill <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/19 15:57:45 by dacuvill #+# #+# */
/* Updated: 2019/01/19 15:57:52 by dacuvill ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft/libft.h"
#include "./fillit.h"
#include <stdlib.h>
void *ft_error_map(t_map *map)
{
if (map->content)
ft_strdel(&map->content);
ft_putstr("error\n");
return (NULL);
}