minishell/printf/libft/tests/mandatory/putnbr_fd/test18.c
2023-06-06 16:48:34 +02:00

28 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* .--. _ */
/* test18.c |o_o || | */
/* |:_/ || |_ _ ___ __ */
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
/* (| | )|_| |_| |> < */
/* Created: 2023/02/21 02:58:12 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
/* Updated: 2023/02/23 21:28:18 by houtworm \___)=(___/ */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
int main(void)
{
int i;
i = 200000;
while (i <= 210000)
{
ft_putnbr_fd(i, 2);
i++;
}
return (0);
}