-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadditionalFunctions_1.c
100 lines (97 loc) · 1.5 KB
/
additionalFunctions_1.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
#include "library.h"
/**
* findpath - finds the path
* @cmds: double pointer
* Return: double pointer
*/
char **findpath(char **cmds)
{
char *pathcito, *delim, *path, *pathP;
delim = ":";
path = path_copy("PATH");
if (path == NULL)
{
_puts("PATH not found\n");
_exit(-1);
}
pathP = strtok(path, delim);
while (pathP != NULL)
{
pathcito = path_concat(pathP, cmds[0]);
if ((access(pathcito, F_OK)) == 0)
{
cmds[0] = pathcito;
free(path);
return (cmds);
}
pathP = strtok(NULL, delim);
free(pathcito);
}
free(path);
return (cmds);
}
/**
* path_concat - concatenates the path
* @s1: first string
* @s2: second string
* Return: pointer
*/
char *path_concat(char *s1, char *s2)
{
char *s, *p;
int s1len, s2len;
s1len = s2len = 0;
s1len = _strlen(s1);
s2len = _strlen(s2);
s = alloc(sizeof(char) * (s1len + s2len + 2));
p = s;
while (*s1 != '\0')
{
*s = *s1;
s++;
s1++;
}
*s = '/';
s++;
while (*s2 != '\0')
{
*s = *s2;
s++;
s2++;
}
*s = '\0';
return (p);
}
/**
* path_copy - copies the path
* @name: path to copy
* Return: pointer
*/
char *path_copy(char *name)
{
char **envp, *path;
int len, i;
i = 0;
envp = environ;
len = _strlen(name);
while (envp[i] != NULL)
{
if (_strncmp(envp[i], name, len) == 0)
{
path = _strdup(&envp[i][len + 1]);
return (path);
}
i++;
}
return (NULL);
}
/**
* help_me - this function prints help
*/
void help_me(void)
{
_puts("help [exit]\n");
_puts("help [env]\n");
_puts("help [unsetenv]\n");
_puts("help [help]\n");
}