-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.c
55 lines (46 loc) · 814 Bytes
/
env.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
#include "env.h"
#include "headers.h"
void setEnv(char **parsed, int args)
{
if(args == 2)
{
if(!parsed[1])
{
return;
}
if(setenv(parsed[1], "", 1))
{
perror("setenv");
}
}
else if(args == 3)
{
if(!parsed[1] || !parsed[2])
{
return;
}
if(setenv(parsed[1], parsed[2], 1))
{
perror("setenv");
}
// printf("%s\n", getenv(parsed[1]));
}
else
{
printf("Usage: setenv var [value]\n");
}
}
void unsetEnv(char **parsed, int args)
{
if(args == 2)
{
if(unsetenv(parsed[1]))
{
perror("unsetenv");
}
}
else
{
printf("Usage: unsetenv var\n");
}
}