-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
26 lines (23 loc) · 1.21 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tpierre <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/03/13 06:27:45 by tpierre #+# #+# */
/* Updated: 2020/03/13 08:52:48 by tpierre ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "includes/printf.h"
#include <limits.h>
int main()
{
// printf("%*.52s%.d%07.*X%25c\n", -42, "INT_MIN", 6541, 58, 12585, 104);
ft_printf("%*.52s%.d%07.*X%25c\n", -42, "INT_MIN", 6541, 58, 12585, 104);
// ft_printf("%s\n", "yolo");
// ft_printf("otu");
system("leaks a.out");
//ft_printf("%*.52s\n", -42, "INT_MIN");
}