-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuiltinsFunctions.c
128 lines (123 loc) · 1.85 KB
/
builtinsFunctions.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
#include "library.h"
/**
* exitF - Entry point
* @cmds: double pointer
* @buffer: buffer
* Return: Always 1 (Success)
*/
int exitF(char **cmds, char *buffer)
{
int status;
if (cmds[1] == NULL)
{
free(buffer);
free(cmds);
_exit(0);
}
else
{
status = _atoi(cmds[1]);
if (status == -1)
{
_puts("./hsh: ");
print_number(cantLoops);
_puts(": exit: Illegal number: ");
_puts(cmds[1]);
_puts("\n");
return (1);
}
free(buffer);
free(cmds);
_exit(status);
}
return (1);
}
/**
* envF - Entry point
* @cmds: double pointer
* Return: Always 1 (Success)
*/
int envF(char **cmds)
{
char **envp;
int i = 0;
cmds = cmds;
envp = environ;
while (envp[i] != NULL)
{
_puts(envp[i]);
_puts("\n");
i++;
}
return (1);
}
/**
* unsetF - Entry point
* @cmds: double pointer
* Return: Always 0 (Success)
*/
int unsetF(char **cmds)
{
char **envp, *name;
int len;
if (cmds[1] == NULL)
return (-1);
name = cmds[1];
if (name[0] == '\0' || name == NULL || _strchr(name, '=') != NULL)
return (-1);
len = _strlen(name);
envp = environ;
while (*envp != NULL)
{
if ((*envp)[len] == '=' && _strncmp(*envp, name, len) == 0)
while (*envp != NULL)
{
*envp = *(envp + 1);
envp++;
}
else
envp++;
}
return (0);
}
/**
* helpF - Entry point
* @cmds: double pointer
* Return: Always 1 (Success)
*/
int helpF(char **cmds)
{
help_t opts[] = {
{"exit", exitH},
{"env", envH},
{"unsetenv", unsetenvH},
{"help", helpH},
{NULL, NULL}
};
int i = 1, j, len, b = 0;
if (cmds[1] == NULL)
{
help_me();
return (0);
}
while (cmds[i] != NULL)
{
j = 0;
while (opts[j].name != NULL)
{
len = _strlen(cmds[i]);
if (_strncmp(opts[j].name, cmds[i], len) == 0)
{
b = 1;
opts[j].func();
break;
}
j++;
}
i++;
}
if (b == 1)
return (0);
_puts("Built-in not found can't help\n");
return (1);
}