-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_exit.c
20 lines (18 loc) · 1 KB
/
ft_exit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_exit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: komatsud <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/01 10:02:42 by komatsud #+# #+# */
/* Updated: 2023/07/01 10:06:13 by komatsud ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_connect4.h"
int ft_exit(t_info *t_maps)
{
ft_free(t_maps);
ft_printf(GREEN"GOOD BYE.\n"RESET_COLOR);
return (0);
}