-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_error.c
25 lines (22 loc) · 1.04 KB
/
ft_error.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_error.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: komatsud <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/30 21:38:36 by komatsud #+# #+# */
/* Updated: 2023/07/01 09:54:37 by komatsud ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_connect4.h"
void ft_error(void)
{
ft_printf("Error\n");
}
void ft_error_with_free(t_info *t_maps)
{
ft_free(t_maps);
ft_printf("Error\n");
return ;
}