summaryrefslogtreecommitdiffstats
path: root/src/m_prompt_seq.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/m_prompt_seq.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/m_prompt_seq.h b/src/m_prompt_seq.h
new file mode 100644
index 0000000..113dc73
--- /dev/null
+++ b/src/m_prompt_seq.h
@@ -0,0 +1,25 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* m_prompt_seq.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef FT_M_PROMPT_SEQ_H
+# define FT_M_PROMPT_SEQ_H
+
+# include <stddef.h>
+
+# include "s_struct.h"
+
+size_t m_prompt_sequences_again(char var[], size_t i, t_msh *msh);
+void m_prompt_sequences_more(char var[], size_t i, t_msh *msh);
+void m_prompt_sequences_next(char var[], size_t i, t_msh *msh);
+void m_prompt_sequences(char var[], size_t i);
+
+#endif