From: Lukas Jiriste Date: Tue, 30 Jan 2024 17:10:13 +0000 (+0100) Subject: Fix indentation of ft_sgn X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=cb00b9904afce575523dd828efc2f6ff5e28ad5e;p=Libft.git Fix indentation of ft_sgn --- 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)); }