-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelp_fun.c
108 lines (100 loc) · 1.71 KB
/
help_fun.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
#include "shellheader.h"
/**
* display_help - displays builtin help page.
* @cmd: Parsed input command.
* @er: status of last executed commaand.
*
* Return: 0 on success, -1 on failure.
*/
int display_help(char **cmd, __attribute__((unused))int er)
{
int fd, fw, rd = 1;
char c;
fd = open(cmd[1], O_RDONLY);
if (fd < 0)
{
perror("Error");
return (0);
}
while (rd > 0)
{
rd = read(fd, &c, 1);
fw = write(STDOUT_FILENO, &c, rd);
if (fw < 0)
{
return (-1);
}
}
_putchar('\n');
return (0);
}
/**
* _realloc - reallocates memory block.
* @ptr: Pointer.
* @old_size: previous size of pointer.
* @new_size: new size of pointer.
*
* Return: void pointer realloc mem.
*/
void *_realloc(void *ptr, unsigned int old_size, unsigned int new_size)
{
void *result;
if (new_size == old_size)
return (ptr);
if (new_size == 0 && ptr)
{
free(ptr);
return (NULL);
}
result = malloc(new_size);
if (result == NULL)
return (NULL);
if (ptr == NULL)
{
fill_an_array(result, '\0', new_size);
free(ptr);
}
else
{
_memcpy(result, ptr, old_size);
free(ptr);
}
return (result);
}
/**
* _memcpy - copy byte froem src to dest.
* @dest: destination pointer.
* @src: source pointer.
* @n: SIZE.
*
* Return: VOID Pointer.
*/
char *_memcpy(char *dest, char *src, unsigned int n)
{
unsigned int i;
for (i = 0; i < n; i++)
{
dest[i] = src[i];
}
return (dest);
}
/**
* fill_an_array - fioll array with constant bytes.
* @a: void pointer.
* @el: integer.
* @len: length of array.
*
* Return: void pointer.
*/
void *fill_an_array(void *a, int el, unsigned int len)
{
char *p = a;
unsigned int i = 0;
while (i < len)
{
*p = el;
p++;
i++;
}
return (a);
}