blob: 5d20f4cc7181c5edfe35c4f8f50c547ec629f354 (
plain)
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
27
28
29
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_putnchar.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/12/22 16:49:05 by rbousset #+# ## ## #+# */
/* Updated: 2019/12/22 16:49:07 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <libft.h>
#include <stddef.h>
int
ft_putnchar(int c, const size_t n)
{
size_t i;
i = 0;
while (i < n)
{
ft_putchar(c);
i++;
}
return (i);
}
|