-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_substr.c
42 lines (39 loc) · 1.31 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: erlajoua <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/17 12:03:39 by erlajoua #+# #+# */
/* Updated: 2020/11/17 12:03:39 by erlajoua ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *str;
char *cpy;
char *zr;
int i;
i = 0;
if (!s)
return (NULL);
str = (char *)s;
if ((int)start > ft_strlen(str))
{
zr = malloc(1);
zr[0] = '\0';
return (zr);
}
if ((cpy = (char*)malloc(len + 1)) == NULL)
return (NULL);
while (str[start] && len-- > 0)
{
cpy[i] = str[start];
start++;
i++;
}
cpy[i] = '\0';
return (cpy);
}