| 1234567891011121314151617181920212223242526 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_pow.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@student.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* 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);
- }
|