-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_fig.c
73 lines (66 loc) · 1.51 KB
/
make_fig.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* make_fig.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dzui <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/08 17:14:49 by dzui #+# #+# */
/* Updated: 2016/12/08 17:14:49 by dzui ### ########.fr */
/* */
/* ************************************************************************** */
#include "fillit.h"
int fn_start(char **split)
{
int i;
int k;
i = 0;
while (i < 4)
{
k = 0;
while (k < 4)
{
if (split[k++][i] == '#')
return (i);
}
i++;
}
return (0);
}
int fn_last(char **split)
{
int i;
int k;
int last;
i = 0;
last = 0;
while (i < 4)
{
k = 0;
while (k < 4)
{
if (split[k][i] == '#')
{
last = i;
break ;
}
k++;
}
i++;
}
return (last);
}
char *mk_tmp(char *copy, int start, int end)
{
char *temp;
int i;
i = 0;
temp = (char *)malloc(end - start + 3);
while (start <= end)
{
temp[i++] = copy[start++];
}
temp[i++] = '\n';
temp[i] = '\0';
return (temp);
}