-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_printf.c
42 lines (39 loc) · 805 Bytes
/
_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
#include "main.h"
/**
* _printf - simulates printf
* @format: argument
* Return: return strings
*/
int _printf(const char *format, ...)
{
match a[] = {{"%c", printf_chr}, {"%s", printf_str}, {"%%", print_percent},
{"%d", print_dec}, {"%i", print_int}, {"%b", print_bin},
{"%u", print_unsigned}, {"%o", print_octal},
{"%r", print_revs}, {"%R", print_rot13}};
va_list args;
int i = 0, len = 0;
int j;
va_start(args, format);
if (format == NULL || (format[0] == '%' && format[1] == '\0'))
return (-1);
Here:
while (format[i] != '\0')
{
j = 9;
while (j >= 0)
{
if (a[j].id[0] == format[i] && a[j].id[1] == format[i + 1])
{
len = len + a[j].f(args);
i = i + 2;
goto Here;
}
j--;
}
_putchar(format[i]);
i++;
len++;
}
va_end(args);
return (len);
}