-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_split.c
98 lines (88 loc) · 2.15 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
96
97
98
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: msabr <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/31 10:49:20 by msabr #+# #+# */
/* Updated: 2024/11/19 16:34:44 by msabr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static void *free_split(char **split)
{
int i;
i = 0;
if (split == NULL)
return (NULL);
while (split[i])
{
free(split[i]);
i++;
}
free(split);
return (NULL);
}
static int count_words(char const *str, char c)
{
int i;
int count;
if (!str)
return (0);
i = 0;
count = 0;
while (str[i])
{
if (str[i] != c && (i == 0 || str[i - 1] == c))
count++;
i++;
}
return (count);
}
static int fill_word(char *dest, const char *src, int start, char c)
{
int i;
i = 0;
while (src[start] && src[start] != c)
{
dest[i] = src[start];
i++;
start++;
}
dest[i] = '\0';
return (start);
}
static int is_sep(char const *str, char sep, int start)
{
while (str[start] && str[start] == sep)
start++;
return (start);
}
char **ft_split(char const *s, char c)
{
int i;
int index;
int start;
char **pnt;
if (!s)
return (NULL);
pnt = (char **)malloc(sizeof(char *) * (count_words(s, c) + 1));
if (!pnt)
return (NULL);
i = 0;
index = 0;
while (index < count_words(s, c))
{
i = is_sep(s, c, i);
start = i;
while (s[i] && s[i] != c)
i++;
pnt[index] = (char *)malloc(sizeof(char) * (i - start + 1));
if (!pnt[index])
return (free_split(pnt));
fill_word(pnt[index++], s, start, c);
}
pnt[count_words(s, c)] = NULL;
return (pnt);
}