-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrim.c
29 lines (26 loc) · 1.19 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rabustam <rabustam@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/31 17:03:58 by rabustam #+# #+# */
/* Updated: 2023/08/02 18:58:37 by rabustam ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strtrim(char const *s1, char const *set)
{
size_t start;
size_t end;
if (!s1 || !set)
return (NULL);
start = 0;
end = ft_strlen(s1);
while (s1[start] && ft_strchr(set, s1[start]))
start++;
while (end && ft_strchr(set, s1[end]))
end--;
return (ft_substr(s1, start, (end - start + 1)));
}