/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_pow.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/09/26 00:42:52 by bchanot #+# #+# */ /* Updated: 2018/10/11 22:58:05 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" size_t ft_pow(int a, int b) { size_t r; r = 1; while (b > 0) { r *= a; b--; } return (r); }