-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_substr.c
42 lines (39 loc) · 1.38 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: aceauses <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/24 16:49:49 by aceauses #+# #+# */
/* Updated: 2023/11/13 13:12:14 by aceauses ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *memory;
size_t i;
if (!s)
return (NULL);
if (len > ft_strlen(s))
len = ft_strlen(s);
if (start + len > ft_strlen(s))
len = ft_strlen(s) - start;
if (start >= ft_strlen(s))
{
memory = malloc(1);
if (!memory)
return (NULL);
memory[0] = '\0';
return (memory);
}
memory = malloc(len + 1);
if (!memory)
return (NULL);
i = 0;
while (i++ < start)
s++;
ft_strlcpy(memory, s, len + 1);
return (memory);
}