libft/ft_abs.c

22 lines
1006 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tosuman <timo42@proton.me> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/03 11:52:45 by tosuman #+# #+# */
/* Updated: 2023/06/03 11:52:45 by tosuman ### ########.fr */
/* */
/* ************************************************************************** */
#include <limits.h>
unsigned int ft_abs(int n)
{
if (n > 0)
return (n);
else
return (-(unsigned int) n);
}