-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_substr.c
18 lines (16 loc) · 1015 Bytes
/
ft_substr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_substr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mgiraldo <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/27 22:51:20 by mgiraldo #+# #+# */
/* Updated: 2020/02/28 00:56:14 by mgiraldo ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_substr(char const *s, unsigned int start, size_t len)
{
return (ft_strsub(s, start, len));
}