-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumber_to_string.c
81 lines (72 loc) · 1.93 KB
/
number_to_string.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
72
73
74
75
76
77
78
79
80
81
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* number_to_string.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/28 15:11:43 by gmelisan #+# #+# */
/* Updated: 2019/01/29 18:00:33 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
static t_uint count_digits(t_ullint n, int base)
{
t_uint res;
res = 1;
while ((n = n / base))
res++;
return (res);
}
static t_ullint absolute_value(t_llint n)
{
t_ullint un;
if (n >= 0)
un = (t_ullint)n;
else
{
n = (n + 1) * (-1);
un = (t_ullint)n;
un++;
}
return (un);
}
static char int2char(int n, int flag_bigsym)
{
if (n > 9)
return (n - 10 + (flag_bigsym ? 'A' : 'a'));
return (n + '0');
}
int get_base(char c)
{
if (c == 'x' || c == 'X' || c == 'p')
return (16);
if (c == 'o' || c == 'O')
return (8);
if (c == 'b')
return (2);
return (10);
}
char *number_to_string(t_llint n, t_conversion *conv,
int flag_unsigned)
{
t_uint digits;
int i;
t_ullint un;
int base;
char *str;
un = flag_unsigned ? (t_ullint)n : absolute_value(n);
base = get_base(conv->type);
digits = count_digits(un, base);
str = ft_strnew(digits);
i = digits - 1;
if (un == 0)
str[i] = '0';
while (un)
{
str[i] = int2char(un % base, (conv->type == 'X' ? 1 : 0));
un = un / base;
i--;
}
return (str);
}