summaryrefslogtreecommitdiffstats
path: root/libft/include/libft.h
diff options
context:
space:
mode:
authorjoe <rbousset@42lyon.fr>2020-12-01 16:12:02 +0100
committerjoe <rbousset@42lyon.fr>2020-12-01 16:12:02 +0100
commit214eae8a55bde34ca412084bebdb378a696152cc (patch)
tree70404f68b1b86035fe4835d8cf2da61dcefc5eba /libft/include/libft.h
parentNot quite done (diff)
download42-minishell-214eae8a55bde34ca412084bebdb378a696152cc.tar.gz
42-minishell-214eae8a55bde34ca412084bebdb378a696152cc.tar.bz2
42-minishell-214eae8a55bde34ca412084bebdb378a696152cc.tar.xz
42-minishell-214eae8a55bde34ca412084bebdb378a696152cc.tar.zst
42-minishell-214eae8a55bde34ca412084bebdb378a696152cc.zip
Bav
Diffstat (limited to 'libft/include/libft.h')
-rw-r--r--libft/include/libft.h2
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,