-
Notifications
You must be signed in to change notification settings - Fork 0
/
print_short_hex.c
44 lines (42 loc) · 1.02 KB
/
print_short_hex.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
#include "main.h"
/**
* prinhhex - prints a short decimal in hexadecimal
* @arguments: input string
* @buf: buffer pointer
* @ibuf: index for buffer pointer
* Return: number of chars printed
*/
int prinhhex(va_list arguments, char *buf, unsigned int ibuf)
{
short int int_input, i, isnegative, count, first_digit;
char *hexadecimal, *binary;
int_input = va_arg(arguments, int);
isnegative = 0;
if (int_input == 0)
{
ibuf = handl_buf(buf, '0', ibuf);
return (1);
}
if (int_input < 0)
{
int_input = (int_input * -1) - 1;
isnegative = 1;
}
binary = malloc(sizeof(char) * (16 + 1));
binary = fill_binary_array(binary, int_input, isnegative, 16);
hexadecimal = malloc(sizeof(char) * (4 + 1));
hexadecimal = fill_hex_array(binary, hexadecimal, 0, 4);
for (first_digit = i = count = 0; hexadecimal[i]; i++)
{
if (hexadecimal[i] != '0' && first_digit == 0)
first_digit = 1;
if (first_digit)
{
ibuf = handl_buf(buf, hexadecimal[i], ibuf);
count++;
}
}
free(binary);
free(hexadecimal);
return (count);
}