diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 17:08:03 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 17:08:03 +0200 |
commit | e9d2f54dc98e1291a436d61ddc911d9fdc8e5cf2 (patch) | |
tree | 6a3182b4ab30cb0250e36d40a1c573bcbba36cb0 /src/u_path.c | |
parent | Normed u_path (diff) | |
download | 42-minishell-e9d2f54dc98e1291a436d61ddc911d9fdc8e5cf2.tar.gz 42-minishell-e9d2f54dc98e1291a436d61ddc911d9fdc8e5cf2.tar.bz2 42-minishell-e9d2f54dc98e1291a436d61ddc911d9fdc8e5cf2.tar.xz 42-minishell-e9d2f54dc98e1291a436d61ddc911d9fdc8e5cf2.tar.zst 42-minishell-e9d2f54dc98e1291a436d61ddc911d9fdc8e5cf2.zip |
Renormed u_path
Diffstat (limited to 'src/u_path.c')
-rw-r--r-- | src/u_path.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/u_path.c b/src/u_path.c index 5e756a5..1ca1b2d 100644 --- a/src/u_path.c +++ b/src/u_path.c @@ -59,10 +59,10 @@ static int8_t u_read_dir(DIR *dir, return (-1); } -uint8_t u_search_in_path(char fullpath[], - const char com[], - size_t dstsize, - t_msh *msh) +uint8_t u_search_in_path(char fullpath[], + const char com[], + size_t dstsize, + t_msh *msh) { char tmp[ARG_MAX]; struct s_path s; |