-
Notifications
You must be signed in to change notification settings - Fork 0
/
fillit.h
69 lines (64 loc) · 2.27 KB
/
fillit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fillit.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akerkeb <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/01/21 23:16:38 by akerkeb #+# #+# */
/* Updated: 2016/01/21 23:41:56 by akerkeb ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FILLIT_H
# define FILLIT_H
# include <unistd.h>
# include <stdlib.h>
# include <fcntl.h>
typedef struct s_piece
{
int x;
int y;
struct s_piece *next;
struct s_piece *prev;
} t_piece;
typedef struct s_list
{
t_piece *p;
int tetri_number;
int is_valid;
struct s_list *next;
} t_tetri;
typedef struct s_tmp
{
int x;
int i;
int y;
char *tmp;
t_tetri *head;
t_tetri *l_tmp;
} t_tmp;
t_tetri *ft_add_on_list(t_tetri *head, t_tetri *l_tmp, int x);
int ft_check_block(char *str);
int ft_check_block_plus(char *str, int x);
int ft_check_tetri(char *str);
t_tetri *ft_create_list_element(char *tetriminos, int x);
char **ft_create_table(int size);
t_piece *ft_cut_tetri(char *tetri);
t_piece *ft_cut_tetri_plus(t_piece *p);
void ft_place(t_tetri *mainlist, char \
**final_carre, int y, int x);
int ft_power_x(int x);
void ft_puttab(char **tab);
int ft_solve_tetri(t_tetri *mainlist, int size);
int ft_solve_tetri_plus(t_tetri *mainlist, char **final, \
int y, int x);
int ft_test_2(t_tetri *mainlist, char **final_carre, \
int y, int x);
int ft_test_isvalid(t_tetri *tmp);
void ft_unplace(t_tetri *mainlist, char **final_carre, \
int y, int x);
void *ft_memalloc(size_t size);
void *ft_memset(void *b, int c, size_t len);
void ft_putendl(char const *s);
void ft_putchar(char c);
#endif