-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_split.c
95 lines (87 loc) · 1.65 KB
/
ft_split.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hkonte <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/15 14:27:31 by hkonte #+# #+# */
/* Updated: 2024/11/15 14:46:50 by hkonte ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static int ft_count(char const *s, char c)
{
int i;
int cmpt;
i = 0;
cmpt = 0;
if (s[0] != c && s[0] != '\0')
cmpt = 1;
while (s[i] == c && s[i])
i++;
while (s[i])
{
if (s[i] != c && s[i] && i != 0)
cmpt++;
while (s[i] != c && s[i])
i++;
while (s[i] == c && s[i])
i++;
}
return (cmpt);
}
static char *add_word(char const *s, int i, int k)
{
char *res;
int j;
res = malloc((k + 1) * sizeof(char));
if (!res)
return (NULL);
j = 0;
while (k > 0)
{
res[j] = s[i];
j++;
i++;
k--;
}
res[j] = '\0';
return (res);
}
static void free_all(char **res, int j)
{
while (j >= 0)
{
free(res[j]);
j--;
}
free(res);
}
char **ft_split(char const *s, char c)
{
char **res;
int i;
int j;
int k;
i = 0;
j = 0;
res = ft_calloc(sizeof(char *), ft_count(s, c) + 1);
if (!res)
return (NULL);
while (s[i] && j < ft_count(s, c))
{
while (s[i] == c && s[i])
i++;
k = 0;
while (s[i + k] != c && s[i + k])
k++;
res[j] = add_word(s, i, k);
if (!res[j])
return (free_all(res, j), NULL);
i += k;
j++;
}
res[j] = NULL;
return (res);
}