-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchecker.c
22 lines (20 loc) · 1021 Bytes
/
checker.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* checker.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rblondia <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/01 16:22:02 by rblondia #+# #+# */
/* Updated: 2021/12/01 16:22:03 by rblondia ### ########.fr */
/* */
/* ************************************************************************** */
#include "../../includes/fdf.h"
void v3f_validate(t_v3f *a)
{
if (!a)
{
perror(ERR_MAP_READING);
exit(EXIT_FAILURE);
}
}