From 084e47b2bf93d278ba3e933d4e5c9aec5c6c8672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Wed, 22 Oct 2025 18:50:20 +0200 Subject: [PATCH] feat(libft.h): update `ft_atoi` description --- libft.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libft.h b/libft.h index 8f5c24a..e63492d 100644 --- a/libft.h +++ b/libft.h @@ -135,6 +135,11 @@ int ft_memcmp(const void *s1, const void *s2, size_t n); // TODO char *ft_strnstr(const char *haystack, const char *needle, size_t len); +/* + The ft_atoi() function converts the + initial portion of the string pointed + to by str to int representation. +*/ int ft_atoi(const char *str); #endif