-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strtrim.c
41 lines (38 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
41
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nmafa <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/06/29 03:48:21 by nmafa #+# #+# */
/* Updated: 2019/06/29 03:49:47 by nmafa ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strtrim(char const *s)
{
char *str;
int i;
int len;
i = 0;
if (!s)
return (0);
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);
}