minus and 0 flags WIP
This commit is contained in:
12
test.c
Normal file
12
test.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
#include "ft_printf_bonus.h"
|
||||
|
||||
int main(void)
|
||||
{
|
||||
printf("===\t-\t===\n\n");
|
||||
printf("%d - ", printf("...%#x...\n", 1358454));
|
||||
printf("%d\n\n", ft_printf("...%#x...\n", 1358454));
|
||||
|
||||
printf("%d - ", printf("...%-1u...\n", 0));
|
||||
printf("%d\n\n", ft_printf("...%-1u...\n", 0));
|
||||
}
|
||||
Reference in New Issue
Block a user