-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strsub.c
31 lines (28 loc) · 1.17 KB
/
ft_strsub.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strsub.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ylagtab <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/03 03:15:52 by ylagtab #+# #+# */
/* Updated: 2021/01/15 19:17:26 by ylagtab ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strsub(char const *s, unsigned int start, size_t len)
{
char *new_str;
size_t i;
if (s == NULL || (new_str = (char *)ft_malloc(len + 1)) == NULL)
return (NULL);
i = 0;
while (i < len)
{
new_str[i] = s[start];
i++;
start++;
}
new_str[i] = '\0';
return (new_str);
}