-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandle_integer.c
71 lines (65 loc) · 2.34 KB
/
handle_integer.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
66
67
68
69
70
71
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* handle_integer.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/17 14:47:31 by gmelisan #+# #+# */
/* Updated: 2019/01/29 20:03:37 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
static t_llint pullarg_integer(va_list ap, t_uchar length)
{
if (length == L_HH)
return (signed char)va_arg(ap, int);
if (length == L_H)
return (short int)va_arg(ap, int);
if (length == L_L)
return (long int)va_arg(ap, long int);
if (length == L_LL)
return (long long int)va_arg(ap, long long int);
if (length == L_J)
return (intmax_t)va_arg(ap, intmax_t);
if (length == L_Z)
return (long int)va_arg(ap, long int);
return (int)va_arg(ap, int);
}
static t_ullint pullarg_unsigned(va_list ap, t_uchar length)
{
if (length == L_HH)
return (unsigned char)va_arg(ap, int);
if (length == L_H)
return (unsigned short int)va_arg(ap, int);
if (length == L_L)
return (unsigned long int)va_arg(ap, long int);
if (length == L_LL)
return (unsigned long long int)va_arg(ap, long long int);
if (length == L_J)
return (uintmax_t)va_arg(ap, uintmax_t);
if (length == L_Z)
return (size_t)va_arg(ap, size_t);
return (unsigned int)va_arg(ap, int);
}
static int is_longtype(char c)
{
if (c == 'D' || c == 'U' || c == 'O' || c == 'p')
return (1);
return (0);
}
void handle_integer(va_list ap, t_conversion *conv)
{
t_llint n;
if (is_longtype(conv->type) && conv->length < L_L)
{
conv->length = L_L;
conv->type = ft_tolower(conv->type);
}
if (conv->type == 'd' || conv->type == 'i')
n = pullarg_integer(ap, conv->length);
else
n = pullarg_unsigned(ap, conv->length);
convert_integer(conv, n);
conv->outlen = ft_strlen(conv->out);
}