-
Notifications
You must be signed in to change notification settings - Fork 0
/
aux_funcs3.c
133 lines (110 loc) · 2.05 KB
/
aux_funcs3.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include "main.h"
/**
* _puts - Puts string
* @str: str is a char
*/
void _puts(char *str)
{
while (*str != '\0')
{
_putchar(*str);
str++;
}
}
/**
* _putchar - Writes the character c to stdout
* @c: The character to print
* Return: On success 1
*/
int _putchar(char c)
{
return (write(1, &c, 1));
}
/**
* _realloc - reallocates a memory block using malloc and free
* @ptr: ptr is a pointer to the memory previously allocated
* @old_size: the size, in bytes, of the allocated space for ptr
* @new_size: the new size, in bytes of the new memory block
*
* Return: Nothing.
*/
void *_realloc(void *ptr, unsigned int old_size, unsigned int new_size)
{
char *ar, *tmp;
unsigned int i;
if (new_size == old_size)
return (ptr);
if (new_size == 0 && ptr)
{
free(ptr);
return (NULL);
}
if (ptr == NULL)
return (malloc(new_size));
ar = malloc(new_size);
if (!ar)
return (NULL);
tmp = ptr;
if (new_size > old_size)
for (i = 0; i < old_size; i++)
ar[i] = tmp[i];
if (new_size < old_size)
for (i = 0; i < new_size; i++)
ar[i] = tmp[i];
free(ptr);
return (ar);
}
/**
* _itoa - constructs a string representation of an integer.
* @value: integer value.
* Return: String representation.
*/
char *_itoa(int value)
{
char *buffer;
int len = ilen(value), i;
buffer = malloc((len + 1) * sizeof(char));
if (!buffer)
return (NULL);
for (i = (len - 1); i >= 0; i--)
{
if (value < 0)
buffer[0] = '-';
buffer[i] = (value % 10) + '0';
value /= 10;
}
buffer[len] = '\0';
return (buffer);
}
/**
* _atoi - converts a string to an integer
* @s: string to be converted
*
* Return: the int converted from the string
*/
int _atoi(char *s)
{
int i = 0, j = 0, n = 0, len = 0, f = 0, digit = 0;
while (s[len] != '\0')
len++;
while (i < len && f == 0)
{
if (s[i] == '-')
++j;
if (s[i] >= '0' && s[i] <= '9')
{
digit = s[i] - '0';
if (j % 2)
digit = -digit;
n = n * 10 + digit;
f = 1;
if (s[i + 1] < '0' || s[i + 1] > '9')
break;
f = 0;
}
i++;
}
if (f == 0)
return (0);
return (n);
}