diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-18 19:27:57 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-18 19:27:57 +0200 |
commit | c4617f7a2499bd81c49963291688977e3153d00f (patch) | |
tree | 75eb5c32f3d0b136f2f823217e0ee177b2fc2c94 /src/m_prompt.h | |
parent | HUGE pain in the ass finally over (diff) | |
download | 42-minishell-c4617f7a2499bd81c49963291688977e3153d00f.tar.gz 42-minishell-c4617f7a2499bd81c49963291688977e3153d00f.tar.bz2 42-minishell-c4617f7a2499bd81c49963291688977e3153d00f.tar.xz 42-minishell-c4617f7a2499bd81c49963291688977e3153d00f.tar.zst 42-minishell-c4617f7a2499bd81c49963291688977e3153d00f.zip |
prompt rice
Diffstat (limited to 'src/m_prompt.h')
-rw-r--r-- | src/m_prompt.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/m_prompt.h b/src/m_prompt.h index 3697fae..8aae6f7 100644 --- a/src/m_prompt.h +++ b/src/m_prompt.h @@ -13,9 +13,10 @@ #ifndef M_PROMPT_H #define M_PROMPT_H +#include <stdint.h> + #include "s_struct.h" -void m_prompt(t_msh *msh); -void m_cont_prompt(void); +void m_prompt_psx(uint8_t x, t_msh *msh); #endif |