summaryrefslogtreecommitdiffstats
path: root/libft/include/libft.h
diff options
context:
space:
mode:
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 c31482c..edd04d4 100644
--- a/libft/include/libft.h
+++ b/libft/include/libft.h
@@ -90,6 +90,8 @@ void ft_putnbr(long nb);
void ft_putnbr_base(long nb, char *base);
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_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,