libft/src/ft_putznbr.c
2023-10-26 18:06:04 +02:00

27 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_putznbr.c :+: :+: */
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/13 04:22:10 by djonker #+# #+# */
/* Updated: 2023/10/18 17:00:09 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_putznbr(int n, int e)
{
int s;
s = ft_intlen(n) - e;
while (s != 0)
{
ft_putchar('0');
s++;
}
ft_putnbr(n);
}