diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-14 20:50:57 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-14 20:50:57 +0200 |
commit | a2dc5174eb19caebf074b446dae129d17485e7bb (patch) | |
tree | 7fcf83e441d10ed9ef60db10de819b1c927dc263 /src/p_lcom.h | |
parent | Just a few more line and we're good (diff) | |
download | 42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.gz 42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.bz2 42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.xz 42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.zst 42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.zip |
&& and || works pretty bav
Diffstat (limited to '')
-rw-r--r-- | src/p_lcom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p_lcom.h b/src/p_lcom.h index d84269e..2ff2c7e 100644 --- a/src/p_lcom.h +++ b/src/p_lcom.h @@ -18,6 +18,6 @@ #include "s_struct.h" int8_t get_redir(const char word[], t_com **com); -int8_t p_lcom(const char line[], const uint64_t count, t_msh *msh); +int8_t p_lcom(const char line[], t_msh *msh); #endif |