-
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.35 KB
/
Copy pathft_substr.c
File metadata and controls
39 lines (36 loc) · 1.35 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: rvan-sch <rvan-sch@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2019/11/22 20:51:51 by rvan-sch #+# #+# */
/* Updated: 2019/11/22 20:52:27 by rvan-sch ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *sub;
size_t i;
if (s == 0)
return (0);
if (ft_strlen(s) < start)
return (ft_strdup(""));
if (ft_strlen(s) < start + len)
sub = (char *)malloc((ft_strlen(s) - start) * sizeof(char) + 1);
else
sub = (char *)malloc(len * sizeof(char) + 1);
if (!sub)
return (NULL);
i = 0;
while (i < len && s[start])
{
sub[i] = s[start];
i++;
start++;
}
sub[i] = '\0';
return (sub);
}