diff options
Diffstat (limited to 'libft/include/libft.h')
-rw-r--r-- | libft/include/libft.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libft/include/libft.h b/libft/include/libft.h index def0a31..47992c0 100644 --- a/libft/include/libft.h +++ b/libft/include/libft.h @@ -91,6 +91,8 @@ void ft_memdel(void **ptr); void ft_delwords(char **words); void ft_itoa_s(char str[], long n); void ft_uitoa_s(char str[], unsigned long n); +void ft_substr_s(char str[], const char *s, + unsigned int start, size_t len); void *ft_memset(void *b, int c, size_t len); void *ft_memcpy(void *dst, const void *src, size_t n); void *ft_memccpy(void *dst, const void *src, |