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

28 lines
1.0 KiB
C

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