From cb00b9904afce575523dd828efc2f6ff5e28ad5e Mon Sep 17 00:00:00 2001 From: Lukas Jiriste Date: Tue, 30 Jan 2024 18:10:13 +0100 Subject: [PATCH] Fix indentation of ft_sgn --- ft_math/ft_sgn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ft_math/ft_sgn.c b/ft_math/ft_sgn.c index 36c2a78..da3b0ae 100644 --- a/ft_math/ft_sgn.c +++ b/ft_math/ft_sgn.c @@ -6,13 +6,13 @@ /* By: ljiriste +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/18 09:41:56 by ljiriste #+# #+# */ -/* Updated: 2024/01/18 09:45:43 by ljiriste ### ########.fr */ +/* Updated: 2024/01/30 18:09:32 by ljiriste ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_math.h" -int ft_sgn(int n) +int ft_sgn(int n) { return ((n > 0) - (n < 0)); } -- 2.30.2