-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert_int.c
64 lines (55 loc) · 1.01 KB
/
convert_int.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
#include "main.h"
/**
* convert - create an array of a number in base 2 and 10
* @num: the number
* @base: the base
* Return: pointer to the array
*/
char *convert(int num, int base)
{
static const char rep[] = "0123456789ABCDEF";
static char buffer[50];
char *ptr;
ptr = &buffer[49];
*ptr = '\0';
do {
*(--ptr) = rep[num % base];
num /= base;
} while (num != 0);
return (ptr);
}
/**
* convert_uns - create array of a number in base 8 and 16
* @num: the number
* @base: the base
* Return: pointer to array
*/
char *convert_uns(unsigned int num, int base)
{
char rep[] = "0123456789abcdef";
static char buf[50];
char *ptr;
ptr = &buf[49];
*ptr = '\0';
do {
*(--ptr) = rep[num % base];
num /= base;
} while (num != 0);
return (ptr);
}
/**
* neg_d - determines if the int arguement is negative
* @ap: arguement pointer
* Return: the integer the arguement pointer holds
*/
int neg_d(va_list ap)
{
int i;
i = va_arg(ap, int);
if (i < 0)
{
i = -i;
_putchar('-');
}
return (i);
}