-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_substr.c
42 lines (39 loc) · 1.34 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: yoyahya <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/11 14:24:58 by yoyahya #+# #+# */
/* Updated: 2022/10/23 15:36:10 by yoyahya ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
int i;
char *ptr;
i = 0;
ptr = NULL;
if (!s)
return (NULL);
if (start > ft_strlen(s))
{
return (ft_strdup("\0"));
}
if (len > ft_strlen(s))
ptr = malloc(ft_strlen(s) * sizeof(char) + 1);
else
ptr = malloc((len + 1) * sizeof(char));
if (ptr == NULL)
return (NULL);
while (s[start] && len)
{
ptr[i++] = s[start];
start++;
len--;
}
ptr[i] = '\0';
return (ptr);
}