-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrim.c
55 lines (50 loc) · 1.44 KB
/
ft_strtrim.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zbenaiss <zbenaiss@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/24 21:12:47 by zbenaiss #+# #+# */
/* Updated: 2022/10/26 03:50:52 by zbenaiss ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static int ft_charfind(const char *str, char c)
{
int i;
i = 0;
while (str[i])
{
if (c == str[i])
return (1);
i++;
}
return (0);
}
char *ft_strtrim(char const *s1, char const *set)
{
int start;
int end;
char *str;
if (!s1)
return (0);
if (!set)
return (ft_strdup(s1));
start = 0;
while (s1[start])
{
if (ft_charfind(set, s1[start]))
start++;
else
break ;
}
end = ft_strlen(s1) - 1;
if (start < end)
{
while (ft_charfind(set, s1[end]))
end--;
}
str = ft_substr(s1, start, (end - start) + 1);
return (str);
}