-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.c
53 lines (47 loc) · 949 Bytes
/
ft_printf.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "ft_printf.h"
int ft_printf(const char *format, ...)
{
va_list args;
int index;
int count;
index = 0;
count = 0;
va_start(args, format);
while (format[index])
{
if (format[index] == '%' && format[index + 1])
{
index++;
if (in_charset(format[index]))
{
count += ft_parsing(format[index], args);
}
}
else
count += ft_putchar(format[index]);
index++;
}
va_end(args);
return (count);
}
// #include <stdio.h>
// int main(void)
// {
// char *b;
// int a;
// int c;
// b = "test";
// a = 45;
// c = 54;
// ft_printf("Test d: %d et %d \n", a, c);
// printf("Test d: %d et %d \n", a, c);
// ft_printf(" NULL %s NULL ", "");
// printf(" NULL %s NULL ", "");
// ft_printf("Test x: %x \n", 255);
// printf("Test x: %x \n", 255);
// ft_printf("Test p: %p \n", &a);
// printf("Test p: %p \n", &a);
// ft_printf("Test c: %c \n", 'A');
// printf("Test c: %c \n", 'A');
// return (0);
// }