-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_substr.c
38 lines (35 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_substr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kotainou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/05/16 16:00:17 by kotainou #+# #+# */
/* Updated: 2023/05/25 08:31:45 by kotainou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdio.h>
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *ans;
size_t i;
i = 0;
if (s == NULL)
return (NULL);
if (ft_strlen(s) < start || len == 0)
return (ft_strdup(""));
if (ft_strlen(s + start) < len)
len = ft_strlen(s + start);
ans = ft_calloc(sizeof(char), (len + 1));
if (ans == NULL)
return (NULL);
ans[0] = 0;
while (i < len && s[start + i])
{
ans[i] = s[start + i];
i++;
}
return (ans);
}