-
Notifications
You must be signed in to change notification settings - Fork 0
/
print_short_oct.c
44 lines (42 loc) · 998 Bytes
/
print_short_oct.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"
/**
* prinhoct - prints long decimal number in octal
* @arguments: input number
* @buf: buffer pointer
* @ibuf: index for buffer pointer
* Return: number of chars printed.
*/
int prinhoct(va_list arguments, char *buf, unsigned int ibuf)
{
short int int_input, i, isnegative, count, first_digit;
char *octal, *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);
octal = malloc(sizeof(char) * (6 + 1));
octal = fill_short_oct_array(binary, octal);
for (first_digit = i = count = 0; octal[i]; i++)
{
if (octal[i] != '0' && first_digit == 0)
first_digit = 1;
if (first_digit)
{
ibuf = handl_buf(buf, octal[i], ibuf);
count++;
}
}
free(binary);
free(octal);
return (count);
}