42-archive/fillit/includes/fillit.h
2016-08-29 16:53:05 +02:00

20 lines
316 B
C

#ifndef FILLIT_H
# include <fcntl.h>
# include <stdio.h>
# include "libft.h"
# define FILLIT_H
# define BUF_SIZE 32
extern size_t g_size;
typedef struct s_ttmn
{
char id;
int pos[4][2];
} t_ttmn;
t_ttmn *ft_get_ttmn(char *filename);
void ft_show_ttmn(t_ttmn ttmn);
void ft_show_board(char **board);
#endif