Comment Putnbr
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
/* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2026/03/09 10:34:20 by lclerel- #+# #+# */
|
||||
/* Updated: 2026/03/09 12:15:39 by lclerel- ### ########.fr */
|
||||
/* Updated: 2026/03/09 13:09:22 by lclerel- ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
void ft_putnbr(int nb)
|
||||
/*void ft_putnbr(int nb)
|
||||
{
|
||||
char value;
|
||||
|
||||
@@ -31,7 +31,7 @@ void ft_putnbr(int nb)
|
||||
ft_putnbr(nb / 10);
|
||||
}
|
||||
value = nb % 10 + '0';
|
||||
}
|
||||
}*/
|
||||
|
||||
int ft_recursive_power(int nb, int power)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user