-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_substr.c
32 lines (29 loc) · 1.21 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_substr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fguedes <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/02 23:51:24 by fguedes #+# #+# */
/* Updated: 2020/05/02 23:51:30 by fguedes ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
unsigned int i;
char *str;
size_t s_len;
if (!s || !(str = malloc((len + 1) * sizeof(*str))))
return (NULL);
i = 0;
s_len = ft_strlen(s);
while (i < len && (start + i) < s_len)
{
str[i] = s[start + i];
i++;
}
str[i] = '\0';
return (str);
}