-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_width.c
More file actions
71 lines (32 loc) · 652 Bytes
/
get_width.c
File metadata and controls
71 lines (32 loc) · 652 Bytes
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
66
67
68
69
70
71
#include "main.h"
/**
* get_width - Calculates the width for printing
* @format: Formatted string in which to print the arguments
* @i: List of arguments to be printed
* @list: list of arguments
*
* Return: width.
*/
int get_width(const char *format, int *i, va_list list)
{
int curr_i;
int width = 0;
for (curr_i = *i + 1; format[curr_i] != '\0'; curr_i++)
{
if (is_digit(format[curr_i]))
{
width *= 10;
width += format[curr_i] - '0';
}
else if (format[curr_i] == '*')
{
curr_i++;
width = va_arg(list, int);
break;
}
else
break;
}
*i = curr_i - 1;
return (width);
}