-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint_map.c
19 lines (17 loc) · 1022 Bytes
/
print_map.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* print_map.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: asoroka <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/15 16:53:57 by asoroka #+# #+# */
/* Updated: 2017/03/15 16:57:19 by asoroka ### ########.fr */
/* */
/* ************************************************************************** */
#include "fdf.h"
void print_map(t_point *point, t_fdf *fdf)
{
if (fdf && point)
printf("(%d, %d)\n", point->x, point->y);
}