diff options
Diffstat (limited to 'libft/include/libft.h')
-rw-r--r-- | libft/include/libft.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libft/include/libft.h b/libft/include/libft.h index 427f873..8ba0563 100644 --- a/libft/include/libft.h +++ b/libft/include/libft.h @@ -111,6 +111,7 @@ void *ft_nrealloc(void *ptr, size_t oldsize, size_t newsize); char *ft_strcat(char *s1, const char *s2); char *ft_strchr(const char *s, int c); char *ft_strrchr(const char *s, int c); +char *ft_strrnchr(const char *s, int c, size_t start); char *ft_strnstr(const char *haystack, const char *needle, size_t len); char *ft_strdup(const char *s1); |