-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf_utils.c
22 lines (20 loc) · 1018 Bytes
/
ft_printf_utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: anebbou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/11 13:22:49 by anebbou #+# #+# */
/* Updated: 2024/11/18 10:59:33 by anebbou ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_put_padding(char c, int count)
{
while (count > 0)
{
ft_putchar_fd(c, 1);
count--;
}
}