Norminette fixes

This commit is contained in:
2025-12-09 20:04:37 +01:00
parent 5e08fc76ef
commit 936c4604fd
9 changed files with 24 additions and 23 deletions

View File

@@ -1,12 +1,12 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* ft_atof.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/22 20:46:43 by aortigos #+# #+# */
/* Updated: 2023/10/18 20:41:03 by aortigos ### ########.fr */
/* Updated: 2025/12/09 20:02:42 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
@@ -35,4 +35,4 @@ double ft_atof(char *str)
if (num < 0 || (str[0] == '-' && str[1] == '0'))
return (num - rest);
return (num + rest);
}
}