diff options
Diffstat (limited to '')
-rw-r--r-- | libft/inc/libft.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libft/inc/libft.h b/libft/inc/libft.h index f85f4b3..5ddb471 100644 --- a/libft/inc/libft.h +++ b/libft/inc/libft.h @@ -106,6 +106,9 @@ char *ft_uitoa_base(unsigned long n, char *base); char *ft_strmapi(const char *s, char (*f)(unsigned int, char)); char *ft_nstr(size_t size); +char *ft_strsubst(char *str, + const char *pattern, + const char *subst); char **ft_split(const char *s, char c); /* |