-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.c
20 lines (18 loc) · 996 Bytes
/
test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alischyn <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/22 17:36:37 by alischyn #+# #+# */
/* Updated: 2017/03/22 17:45:33 by alischyn ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "ft_printf.h"
int main(void)
{
ft_printf("% +5.2lld\n");
return (0);
}