-
Notifications
You must be signed in to change notification settings - Fork 0
/
chrisvee_printf.c
65 lines (55 loc) · 1.26 KB
/
chrisvee_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
54
55
56
57
58
59
60
61
62
63
64
65
#include "main.h"
void print_buffer(char buffer[], int *buff_ind);
/**
* _printf - Printf function
* @format: format.
* Return: Printed chars.
*/
int _printf(const char *format, ...)
{
int a, displayed = 0, chars_displayed = 0;
int flg, wid, pr, size, buff_ind = 0;
va_list argu;
char buffer[BUFFER_SIZE];
if (format == NULL)
return (-1);
va_start(argu, format);
for (a = 0; format && format[a] != '\0'; a++)
{
if (format[a] != '%')
{
buffer[buff_ind++] = format[a];
if (buff_ind == BUFFER_SIZE)
print_buffer(buffer, &buff_ind);
chars_displayed++;
}
else
{
print_buffer(buffer, &buff_ind);
flg = hand_flg(format, &a);
wid = hand_wid(format, &a, argu);
pr = hand_pr(format, &a, argu);
size = hand_size(format, &a);
++a;
displayed = handle_print(format, &a, argu, buffer,
flg, wid, pr, size);
if (displayed == -1)
return (-1);
chars_displayed += displayed;
}
}
print_buffer(buffer, &buff_ind);
va_end(argu);
return (chars_displayed);
}
/**
* print_buffer - diplays the contents
* @buffer: Array of chars
* @buff_ind: Index at which to add next char, represents the length.
*/
void print_buffer(char buffer[], int *buff_ind)
{
if (*buff_ind > 0)
write(1, &buffer[0], *buff_ind);
*buff_ind = 0;
}