-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_substr.c
42 lines (39 loc) · 1.28 KB
/
ft_substr.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
42
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_substr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alouzizi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/11 11:44:51 by alouzizi #+# #+# */
/* Updated: 2021/11/14 11:35:29 by alouzizi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *s2;
size_t i;
size_t j;
size_t l;
if (!s)
return (NULL);
l = ft_strlen(s + start);
if (l < len)
len = l;
s2 = (char *)malloc(sizeof(char) * (len + 1));
if (!s2)
return (NULL);
i = 0;
j = 0;
while (s[i])
{
if (i >= start && j < len)
{
s2[j++] = s[i];
}
i++;
}
s2[j] = '\0';
return (s2);
}