-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflag.c
More file actions
95 lines (94 loc) · 1.86 KB
/
flag.c
File metadata and controls
95 lines (94 loc) · 1.86 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include "main.h"
/**
*postive_sign - fun to print the + flag
*@flag: flag to can overwide the flags
*@ch: the + char
*@j: the index of the argument
*@ap: the copy of the argument list
*@pCount: the count of the str
*/
void postive_sign(int flag, char ch, int j, va_list ap, int *pCount)
{
if (flag < 2 || (j == 2 || j == 3 || j == 12))
{
if (ch == '+' && (j == 2 || j == 3 || j == 12))
{
if (va_arg(ap, int) >= 0 || j == 12)
{
_putchar('+');
*pCount += 1;
}
}
}
else
{
window_sign(flag, '#', j, ap, pCount);
}
}
/**
*space_sign - fun to print the space flag
*@flag: flag to can overwide the flags
*@ch: the + char
*@j: the index of the argument
*@ap: the copy of the argument list
*@pCount: the count of the str
*/
void space_sign(int flag, char ch, int j, va_list ap, int *pCount)
{
if ((ch == ' ' && (j == 2 || j == 3 || j == 12)) && flag == 0)
{
if (va_arg(ap, int) >= 0 || j == 12)
{
_putchar(' ');
*pCount += 1;
}
}
else if (flag <= 2 && (j == 2 || j == 3 || j == 12))
{
_putchar('+');
*pCount += 1;
}
else if (flag == 2 && !(j == 2 || j == 3 || j == 12))
{
window_sign(flag, '#', j, ap, pCount);
}
}
/**
*window_sign - fun to print the windoflag
*@flag: flag to can overwide the flags
*@ch: the + char
*@j: the index of the argument
*@ap: the copy of the argument list
*@pCount: the count of the str
*/
void window_sign(int flag, char ch, int j, va_list ap, int *pCount)
{
if (va_arg(ap, int) != 0)
{
if (flag > 1 && !(j == 2 || j == 3 || j == 12))
{
if (ch == '#' && j == 7)
{
_putchar('0');
*pCount += 1;
}
else if (ch == '#' && j == 9)
{
_putchar('0');
_putchar('x');
*pCount += 2;
}
else if (ch == '#' && j == 10)
{
_putchar('0');
_putchar('X');
*pCount += 2;
}
}
else if (flag < 2 && (j == 2 || j == 3 || j == 12))
{
_putchar('+');
*pCount += 1;
}
}
}