-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_substr.c
38 lines (35 loc) · 1.35 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: ulyildiz <ulyildiz@student.42kocaeli.co +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/11 10:21:04 by ulyildiz #+# #+# */
/* Updated: 2023/10/24 15:47:07 by ulyildiz ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *substr;
size_t i;
i = 0;
if (s == NULL)
return (NULL);
if (start >= ft_strlen(s))
return (ft_strdup(""));
if (ft_strlen(s + start) > len)
substr = (char *)malloc(len + 1);
else
substr = (char *)malloc(ft_strlen(s + start) + 1);
if (substr == NULL)
return (NULL);
while (i < len && s[start + i] != '\0')
{
substr[i] = s[start + i];
i++;
}
substr[i] = '\0';
return (substr);
}