-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprecision.c
More file actions
41 lines (35 loc) · 716 Bytes
/
Copy pathprecision.c
File metadata and controls
41 lines (35 loc) · 716 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
#include "main.h"
/**
* get_pre - Calculates the precision for printing
* @format: Formatted string in which to print the arguments
* @para: List of arguments to be printed.
* @list: list of arguments.
*
* Return: Precision.
*/
int get_pre(const char *format, int *para, va_list list)
{
int curr_para = *para + 1;
int precision = -1;
if (format[curr_para] != '.')
return (precision);
precision = 0;
for (curr_para += 1; format[curr_para] != '\0'; curr_para++)
{
if (is_digit(format[curr_para]))
{
precision *= 10;
precision += format[curr_para] - '0';
}
else if (format[curr_para] == '*')
{
curr_para++;
precision = va_arg(list, int);
break;
}
else
break;
}
*para = curr_para - 1;
return (precision);
}