blob: f1c37487629d9ea3d50cb81eeaec4ed845867ebe (
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 00:01:03 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
// char **get_split_path(t_env *env)
// {
// char *path;
// path = env_get(env, "PATH");
// return (ft_split(path, ':'));
// }
|