-
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: delin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/21 16:58:03 by delin #+# #+# */
/* Updated: 2018/04/28 15:48:23 by delin ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strsub(char const *s, unsigned int start, size_t len)
{
char *tmp;
int i;
if (!s || start >= ft_strlen(s))
return (NULL);
tmp = (char *)malloc(sizeof(char) * (len + 1));
if (tmp)
{
i = 0;
while (len--)
tmp[i++] = s[start++];
tmp[i] = '\0';
}
return (tmp);
}