-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr.c
26 lines (23 loc) · 1.06 KB
/
ft_putnbr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lsauvage <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/24 14:42:21 by lsauvage #+# #+# */
/* Updated: 2017/11/24 14:47:37 by lsauvage ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** DESCRIPTION : Affiche l'entier n sur la sortie standard
**
** PARAM #1 : L'entier a afficher
**
** RETOUR : rien.
*/
void ft_putnbr(int n)
{
ft_putnbr_fd(n, 1);
}