-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_substr.c
More file actions
39 lines (36 loc) · 1.33 KB
/
ft_substr.c
File metadata and controls
39 lines (36 loc) · 1.33 KB
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
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_substr.c :+: :+: */
/* +:+ */
/* By: mgraaf <mgraaf@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2021/12/16 14:25:16 by mgraaf #+# #+# */
/* Updated: 2021/12/16 14:25:18 by mgraaf ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
unsigned int i;
char *substr;
size_t strln;
strln = ft_strlen(s);
if (!s)
return (0);
if (start > strln)
return (ft_strdup(""));
if (len > strln - start)
return (ft_strdup(s + start));
i = 0;
substr = (char *)malloc((len * sizeof(char)) + 1);
if (!substr)
return (0);
while (i < len)
{
substr[i] = s[start + i];
i++;
}
substr[i] = '\0';
return (substr);
}