-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrim.c
40 lines (37 loc) · 1.35 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
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybouzgao <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/09 22:17:06 by ybouzgao #+# #+# */
/* Updated: 2017/11/12 15:12:54 by ybouzgao ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strtrim(char const *s)
{
int i;
int len;
char *str;
if (s == NULL)
return (NULL);
len = ft_strlen(s);
while (s[len - 1] == ' ' || s[len - 1] == '\t' || s[len - 1] == '\n')
len--;
i = -1;
while (s[++i] == ' ' || s[i] == '\t' || s[i] == '\n')
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);
}