-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrim.c
27 lines (24 loc) · 1.16 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maareval <maareval@student.42malaga.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/01 12:06:03 by maareval #+# #+# */
/* Updated: 2022/05/01 12:28:01 by maareval ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strtrim(char const *s1, char const *set)
{
size_t i;
if (!s1 || !set)
return (NULL);
while (ft_strchr(set, *s1) && *s1 != '\0')
s1++;
i = ft_strlen((char *)s1);
while (ft_strchr(set, s1[i]) && i != 0)
i--;
return (ft_substr((char *)s1, 0, i + 1));
}