-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_check_placement.c
57 lines (53 loc) · 1.61 KB
/
ft_check_placement.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_check_placement.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: frahaing <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/23 10:52:06 by frahaing #+# #+# */
/* Updated: 2017/11/23 18:11:12 by rkrief ### ########.fr */
/* */
/* ************************************************************************** */
#include "fillit.h"
static void ft_count(char *str, int *i, int *j)
{
if (str[*i] == '#')
{
if (str[*i + 1] == '#')
*j = *j + 1;
if (str[*i - 1] == '#')
*j = *j + 1;
if (str[*i + 5] == '#')
*j = *j + 1;
if (str[*i - 5] == '#')
*j = *j + 1;
}
}
int ft_check_placement(char *str)
{
int i;
int j;
size_t len;
i = 0;
j = 0;
len = ft_strlen(str);
while (str[i])
{
while (str[i] == '.')
i++;
if ((str[i] == '\n' && str[i + 2] == '\0') && j < 6)
return (0);
ft_count(str, &i, &j);
if ((str[i] == '\n' && (str[i + 1] == '\n' && (str[i + 1]))) && j < 6)
return (0);
if (((str[i] == '\n' && str[i + 1] == '\n') || i <= 18) && j >= 6)
{
j = 0;
i = -1;
str = str + 21;
}
i++;
}
return (1);
}