-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrim.c
38 lines (35 loc) · 1.36 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: phelebra <xhelp00@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/13 10:39:28 by phelebra #+# #+# */
/* Updated: 2023/01/20 12:04:25 by phelebra ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strtrim(char const *s1, char const *set)
{
char *ptr;
size_t i;
size_t start;
size_t end;
if (s1 == NULL || set == NULL)
return (NULL);
start = 0;
end = ft_strlen(s1);
while (s1[start] != '\0' && ft_strchr(set, s1[start]))
start++;
while (end > start && ft_strchr(set, s1[end - 1]))
end--;
ptr = malloc(sizeof(char) * (end - start) + 1);
if (!ptr)
return (NULL);
i = 0;
while (end > start)
ptr[i++] = s1[start++];
ptr[i] = '\0';
return (ptr);
}