-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfinding_path.c
96 lines (85 loc) · 1.63 KB
/
finding_path.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
#include "shell.h"
/**
* path_cmd - Search In $PATH For Excutable Command
* @cmd: Parsed Input
* Return: 1 Failure 0 Success.
*/
int path_cmd(char **cmd)
{
char *path, *value, *cmd_path;
struct stat buf;
path = _getenv("PATH");
value = _strtok(path, ":");
while (value != NULL)
{
cmd_path = build(*cmd, value);
if (stat(cmd_path, &buf) == 0)
{
*cmd = _strdup(cmd_path);
free(cmd_path);
free(path);
return (0);
}
free(cmd_path);
value = _strtok(NULL, ":");
}
free(path);
return (1);
}
/**
* build - Build Command
* @token: Excutable Command
* @value: Dirctory Conatining Command
*
* Return: Parsed Full Path Of Command Or NULL Case Failed
*/
char *build(char *token, char *value)
{
char *cmd;
size_t len;
len = _strlen(value) + _strlen(token) + 2;
cmd = malloc(sizeof(char) * len);
if (cmd == NULL)
{
return (NULL);
}
memset(cmd, 0, len);
cmd = _strcat(cmd, value);
cmd = _strcat(cmd, "/");
cmd = _strcat(cmd, token);
return (cmd);
}
/**
* _getenv - Gets The Value Of Enviroment Variable By Name
* @name: Environment Variable Name
* Return: The Value of the Environment Variable Else NULL.
*/
char *_getenv(char *name)
{
size_t nl, vl;
char *value;
int i, x, j;
nl = _strlen(name);
for (i = 0 ; environ[i]; i++)
{
if (_strncmp(name, environ[i], nl) == 0)
{
vl = _strlen(environ[i]) - nl;
value = malloc(sizeof(char) * vl);
if (!value)
{
free(value);
perror("unable to alloc");
return (NULL);
}
j = 0;
for (x = nl + 1; environ[i][x]; x++, j++)
{
value[j] = environ[i][x];
}
value[j] = '\0';
return (value);
}
}
return (NULL);
}