-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_to_mat_utils.c
20 lines (18 loc) · 1008 Bytes
/
input_to_mat_utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* input_to_mat_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: asibille <asibille@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/29 07:00:07 by asibille #+# #+# */
/* Updated: 2022/03/29 07:01:33 by asibille ### ########.fr */
/* */
/* ************************************************************************** */
#include "fdf.h"
void ft_nocolor(t_colors *col)
{
col[0].red = 255;
col[0].green = 255;
col[0].blue = 255;
}