-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrimc.c
40 lines (37 loc) · 1.28 KB
/
ft_strtrimc.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrimc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybouzgao <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/10 14:47:56 by ybouzgao #+# #+# */
/* Updated: 2017/11/14 17:22:17 by ybouzgao ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strtrimc(char const *s, char c)
{
int i;
int len;
char *str;
if (s == NULL)
return (NULL);
len = ft_strlen(s);
while (s[len - 1] == c)
len--;
i = -1;
while (s[++i] == c)
len--;
if (len <= 0)
len = 0;
str = (char*)malloc(sizeof(char) * (len + 1));
if (str == NULL)
return (NULL);
s += i;
i = -1;
while (++i < len)
str[i] = *s++;
str[i] = '\0';
return (str);
}