-
Notifications
You must be signed in to change notification settings - Fork 0
/
flags_func.c
43 lines (40 loc) · 1.07 KB
/
flags_func.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
#include "ft_printf.h"
// 기능 : (-)플래그 또는 (0)플래그가 존재하는가, 리턴 : void
void is_flag(char fmt, t_flags *flags)
{
if (fmt == '0' && flags->width == 0 && flags->dot == -1)
flags->zero = 1;
else if (fmt == '-' && flags->width == 0 && flags->dot == -1)
flags->minus = 1;
}
// 기능 : width가 존재하는가, 리턴 : void
void is_width(char fmt, t_flags *flags, va_list ap)
{
if (flags->dot == -1 && (ft_isdigit(fmt) || fmt == '*'))
{
if (fmt == '*')
{
flags->width = va_arg(ap, int);
if (flags->width < 0) // *이 음수이면 (-)플래그가 켜지고 *은 양수로 바꿈
{
flags->minus = 1;
flags->width *= -1;
}
}
else
flags->width = (flags->width * 10) + (fmt - '0');
}
}
// 기능 : precision이 존재하는가, 리턴 : void
void is_precision(char fmt, t_flags *flags, va_list ap)
{
if (fmt == '.' || (flags->dot >= 0 && (ft_isdigit(fmt) || fmt == '*')))
{
if (fmt == '.')
flags->dot = 0;
else if (fmt == '*')
flags->dot = va_arg(ap, int);
else
flags->dot = (flags->dot * 10) + (fmt - '0');
}
}