-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathss-mem_mang.c
More file actions
82 lines (73 loc) · 1.45 KB
/
ss-mem_mang.c
File metadata and controls
82 lines (73 loc) · 1.45 KB
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
#include "shell.h"
/**
* _memset - fills memory with a constant byte
* @s: the pointer to the memory area
* @b: the byte to fill *s with
* @n: the amount of bytes to be filled
* Return: s- a pointer to the memory area of s
*/
char *_memset(char *s, char b, unsigned int n)
{
unsigned int i;
for (i = 0; i < n; i++)
s[i] = b;
return (s);
}
/**
* free_vector - frees memory allocated to a 2D character array
* @vec: Vector to be freed.
*
* Return: Nothing.
*/
void free_vector(char **vec)
{
char **ptr = vec;
if (!vec)
return;
while (*vec)
free(*vec++);
free(ptr);
}
/**
* _realloc - reallocates a block of memory
* @ptr: pointer to previous memory allocated block
* @old_size: byte size of previous block
* @new_size: byte size of new block
*
* Return: pointer of old block.
*/
void *_realloc(void *ptr, unsigned int old_size, unsigned int new_size)
{
char *p;
if (!ptr)
return (malloc(new_size));
if (!new_size)
return (free(ptr), NULL);
if (new_size == old_size)
return (ptr);
p = malloc(new_size);
if (!p)
return (NULL);
old_size = old_size < new_size ? old_size : new_size;
while (old_size--)
p[old_size] = ((char *)ptr)[old_size];
free(ptr);
return (p);
}
#include "shell.h"
/**
* bfree - frees a pointer and NULLs the address
* @ptr: address of the pointer to free
*
* Return: 1 if freed, otherwise 0.
*/
int bfree(void **ptr)
{
if (ptr && *ptr)
{
free(*ptr);
*ptr = NULL;
return (1);
}
return (0);
}