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