-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
28 lines (25 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
27
28
/* ************************************************************************** */
/* LE - / */
/* / */
/* main.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: mschneid <mschneid@student.le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/01/04 13:16:38 by mschneid #+# ## ## #+# */
/* Updated: 2018/02/21 14:05:57 by mschneid ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "srcs/ft_printf.h"
#include <stdio.h>
#include <locale.h>
#include <stdlib.h>
#include <limits.h>
#include <wchar.h>
#include <math.h>
int main(void)
{
int test;
test = ft_printf("Salut comment {magenta}tu va{eoc}s %b he\n", 10);
printf("%d", test);
}