-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrim.c
36 lines (32 loc) · 1.25 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abertran <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/27 16:35:13 by abertran #+# #+# */
/* Updated: 2022/10/03 15:50:14 by abertran ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strtrim(char const *s1, char const *set)
{
size_t i;
if (!s1 || !set)
return (0);
while (*s1 && ft_strchr(set, *s1))
s1++;
i = ft_strlen(s1);
while (i && ft_strchr(set, s1[i]))
i--;
return (ft_substr(s1, 0, i + 1));
}
/*
int main(void)
{
char const s1[] = "nonohola que tal";
char const set[] = "hola";
printf("%s", ft_strtrim(s1, set));
}
*/