-
Notifications
You must be signed in to change notification settings - Fork 0
/
aux_stdlib.c
100 lines (88 loc) · 1.34 KB
/
aux_stdlib.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#include "main.h"
/**
* get_len - Get the lenght of a number.
* @n: type int number.
* Return: Lenght of a number.
*/
int get_len(int n)
{
unsigned int n1;
int lenght = 1;
if (n < 0)
{
lenght++;
n1 = n * -1;
}
else
{
n1 = n;
}
while (n1 > 9)
{
lenght++;
n1 = n1 / 10;
}
return (lenght);
}
/**
* aux_itoa - function converts int to string.
* @n: type int number
* Return: String.
*/
char *aux_itoa(int n)
{
unsigned int n1;
int lenght = get_len(n);
char *buffer;
buffer = malloc(sizeof(char) * (lenght + 1));
if (buffer == 0)
return (NULL);
*(buffer + lenght) = '\0';
if (n < 0)
{
n1 = n * -1;
buffer[0] = '-';
}
else
{
n1 = n;
}
lenght--;
do {
*(buffer + lenght) = (n1 % 10) + '0';
n1 = n1 / 10;
lenght--;
}
while (n1 > 0)
;
return (buffer);
}
/**
* _atoi - converts a string to an integer.
* @s: input string.
* Return: integer.
*/
int _atoi(char *s)
{
unsigned int count = 0, size = 0, oi = 0, pn = 1, m = 1, i;
while (*(s + count) != '\0')
{
if (size > 0 && (*(s + count) < '0' || *(s + count) > '9'))
break;
if (*(s + count) == '-')
pn *= -1;
if ((*(s + count) >= '0') && (*(s + count) <= '9'))
{
if (size > 0)
m *= 10;
size++;
}
count++;
}
for (i = count - size; i < count; i++)
{
oi = oi + ((*(s + i) - 48) * m);
m /= 10;
}
return (oi * pn);
}