-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
33 lines (31 loc) · 1.56 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
27
28
29
30
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: albarret <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/31 06:39:15 by albarret #+# #+# */
/* Updated: 2019/06/16 22:32:46 by albarret ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include "ft_printf.h"
int main(void)
{
//printf("printfinmain\n");
//ft_printf("this is just as string\n");
//ft_printf("Print a percent sign %%\n");
//ft_printf("First test with conversion%s\n", "String added");
//ft_printf("test%-s", "string");
//ft_printf("test%s");
//ft_printf("%-100i"); // This is width_test.
//ft_printf("%+.456789d"); //This is precision_numbers test.
//ft_printf("%#5.5i"); //This is precision and width test.
//ft_printf("This has a string%-2.4hhi");
//ft_printf("%+2.4hi");
//ft_printf("this has a string%-2.4lli");
ft_printf("%#3.4li");
//ft_printf("string1%#1.1hhistring2%-2.2llc"); //I need to think about spaces ect..
return (0);
}