-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_substr.c
70 lines (66 loc) · 2.15 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_substr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ribana-b <ribana-b@42student.malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/30 22:59:46 by ribana-b #+# #+# */
/* Updated: 2023/05/08 02:16:15 by ribana-b ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t bytes)
{
char *newstr;
size_t cont;
cont = 0;
if ((bytes + start > ft_strlen(s)))
{
bytes = ft_strlen(s) - start;
}
if (start >= ft_strlen(s))
{
return (ft_calloc(1, 1));
}
newstr = (char *)malloc((bytes + 1) * sizeof(char));
if (!newstr)
{
return (0);
}
while (cont < bytes)
{
*(newstr + cont) = *(s + start + cont);
cont++;
}
*(newstr + cont) = '\0';
return (newstr);
}
/* //This is for testing
#include <stdio.h>
#include <string.h>
int main(void)
{
char s1[] = "Hola/muy/buenos/dias";
printf("%s", ft_substr("hola", 1, 4));
}
*/
/*
RRRRR
RRR RRR
RRR RRR
RR RRRRRRRRRRRRRRRR
RRR RRRR RRRRRR
RRR RRR RRR
RRRRRRRR RRRR
RRR RRRRR
RRR RRR
RRR RRRR
RRR RRRRR
RRRRRRRRRRRRRR
RRRR RRRR
RRRR RRR
RRRR RRR
RRR RRR RRRRR
RRRR RRRRRRRR
*/