mirror of
https://github.com/Savapitech/42sh.git
synced 2026-01-18 16:57:28 +01:00
16 lines
221 B
C
16 lines
221 B
C
/*
|
|
** EPITECH PROJECT, 2025
|
|
** __
|
|
** File description:
|
|
** _
|
|
*/
|
|
|
|
#ifndef PATH_H
|
|
#define PATH_H
|
|
#include "env.h"
|
|
|
|
#define DEFAULT_PATH "/usr/bin:."
|
|
|
|
char *parse_full_bin_path(env_t *env, char *bin_name);
|
|
#endif
|