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

@@ -6,7 +6,7 @@
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/22 20:46:43 by aortigos #+# #+# */
/* Updated: 2025/11/16 20:25:47 by aortigos ### ########.fr */
/* Updated: 2025/12/09 20:01:45 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
@@ -14,7 +14,7 @@
static size_t len_sl(long long nl)
{
size_t len;
size_t len;
len = 0;
if (nl <= 0)
@@ -47,7 +47,7 @@ char *ft_sltoa(long long nl)
while (nl != 0 && len--)
{
str[len] = (nl % 10) + '0';
nl /= 10
nl /= 10;
}
return (str);
}