-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_split.c
92 lines (82 loc) · 2.02 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fvieira <fvieira@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/19 19:44:19 by fvieira #+# #+# */
/* Updated: 2022/08/22 15:20:31 by fvieira ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static int count_words(char const *s, char c)
{
int words;
int i;
words = 1;
i = 0;
while (s[i])
{
if (s[i] == c && i > 0 && s[i - 1] != c)
words++;
i++;
}
return (words);
}
static char *word_dup(const char *str, int start, int finish)
{
char *word;
int i;
i = 0;
word = malloc((finish - start + 1) * sizeof(char));
while (start < finish)
word[i++] = str[start++];
word[i] = '\0';
return (word);
}
char **ft_split(char const *s, char c)
{
size_t i;
size_t j;
int index;
char **ptrs;
ptrs = malloc(sizeof(char *) * (count_words(s, c) + 1));
if (!s || !ptrs)
return (0);
i = 0;
j = 0;
index = -1;
while (i <= ft_strlen(s))
{
if (s[i] != c && index < 0)
index = i;
else if ((s[i] == c || i == ft_strlen(s)) && index >= 0)
{
ptrs[j++] = word_dup(s, index, i);
index = -1;
}
i++;
}
ptrs[j] = 0;
return (ptrs);
}
/*
#include <stdio.h>
int main(void)
{
char *texto = "fds bbbgd grbb";
char delimiter = 'b';
char **array;
int size;
int i;
i = 0;
size = 2;
array = ft_split(texto, delimiter);
while(i < size)
{
printf("->%s\n", array[i++]);
}
printf("->%s", array[i]);
return(0);
}*/