-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint_ints.c
69 lines (57 loc) · 1.15 KB
/
print_ints.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
#include "main.h"
/**
* int_spesi - prints ints to stdout
* @ap: pointer arguement
* @count: number of char printed
*/
void int_spesi(va_list ap, int *count)
{
int i;
char *ptr;
i = neg_d(ap);
ptr = convert(i, 10);
for (i = 0; ptr[i]; i++, (*count)++)
_putchar(ptr[i]);
}
/**
* uns_spesi - print unsigned numbers to stdout
* @ap: pointer arguement
* @count: number of char printed
*/
void uns_spesi(va_list ap, int *count)
{
unsigned int i;
char *ptr;
i = va_arg(ap, unsigned int);
ptr = convert_uns(i, 10);
for (i = 0; ptr[i]; i++, (*count)++)
_putchar(ptr[i]);
}
/**
* bin_spesi - prints bin to stdout
* @ap: pointer arguement
* @count: number of char printed
*/
void bin_spesi(va_list ap, int *count)
{
unsigned int i;
char *ptr;
i = va_arg(ap, unsigned int);
ptr = convert_uns(i, 2);
for (i = 0; ptr[i]; i++, (*count)++)
_putchar(ptr[i]);
}
/**
* oct_spesi - prints oct to stdout
* @ap: pointer arguement
* @count: number of char printed
*/
void oct_spesi(va_list ap, int *count)
{
unsigned int i;
char *ptr;
i = va_arg(ap, unsigned int);
ptr = convert_uns(i, 8);
for (i = 0; ptr[i]; i++, (*count)++)
_putchar(ptr[i]);
}