Files
42-ft_printf/test.c
David Gailleton 942a76c371 rework of parsing
2025-11-20 18:08:51 +01:00

23 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/20 16:11:53 by dgaillet #+# #+# */
/* Updated: 2025/11/20 18:01:15 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "ft_printf_bonus.h"
#include <limits.h>
int main(void)
{
printf("===\t-\t===\n\n");
printf("%d - ", printf("...%10.s...\n", NULL));
printf("%d\n\n", ft_printf("...%10.s...\n", NULL));
}