ft_substr: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-17 12:00:30 +02:00
parent a20611c09a
commit 7d896b939c
3 changed files with 44 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/17 11:03:30 by kcolin ### ########.fr */
/* Updated: 2024/10/17 11:40:51 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -47,5 +47,6 @@ int ft_atoi(const char *nptr);
void *ft_calloc(size_t nmemb, size_t size);
char *ft_strdup(const char *s);
char *ft_substr(char const *s, unsigned int start, size_t len);
#endif