blob: b2e7873a70ed10af0ec7683ed1a610c1a9c970ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* env_tools.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/15 16:14:31 by dkaiser #+# #+# */
/* Updated: 2025/01/22 14:13:02 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
char **get_split_path(t_env *env)
{
char *path;
path = env_get(env, "PATH");
return (ft_split(path, ':'));
}
|