From 9af2885d872de9c60b11159efe0685738031096d Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 14 Feb 2020 03:46:08 +0100 Subject: Added documentation for all functions and refactored ft_strjoin_free -> ft_strjoinf --- src/str/ft_atoi_strict.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/str/ft_atoi_strict.c') diff --git a/src/str/ft_atoi_strict.c b/src/str/ft_atoi_strict.c index f573593..8be4c4b 100644 --- a/src/str/ft_atoi_strict.c +++ b/src/str/ft_atoi_strict.c @@ -6,13 +6,13 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/15 10:06:29 by cacharle #+# #+# */ -/* Updated: 2020/02/10 02:20:40 by cacharle ### ########.fr */ +/* Updated: 2020/02/14 02:46:43 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" -int ft_strict_atoi(const char *s) +int ft_atoi_strict(const char *s) { char *end; long ret; -- cgit