Skip to content

Commit

Permalink
ft_putnbr
Browse files Browse the repository at this point in the history
  • Loading branch information
Walid Araissi committed Nov 10, 2022
1 parent a5f3712 commit d96a5a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ft_putnbr.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: waraissi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/09 18:42:06 by waraissi #+# #+# */
/* Updated: 2022/11/09 21:34:43 by waraissi ### ########.fr */
/* Updated: 2022/11/10 18:15:41 by waraissi ### ########.fr */
/* */
/* ************************************************************************** */

Expand All @@ -32,4 +32,4 @@ void ft_putnbr(int n, int *res)
ft_putnbr(n % 10, res);
}
}
}
}

0 comments on commit d96a5a4

Please sign in to comment.