-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintmv.c
21 lines (19 loc) · 1012 Bytes
/
printmv.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* movplayer.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abadidi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/24 06:27:15 by abadidi #+# #+# */
/* Updated: 2021/11/25 01:54:13 by abadidi ### ########.fr */
/* */
/* ************************************************************************** */
#include "so_long.h"
int ft_printmv(t_data *data)
{
data->mv++;
ft_putnbr(data->mv);
write(1, "\n", 1);
return (1);
}