24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* prompt.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/02/04 16:35:35 by whaffman #+# #+# */
|
|
/* Updated: 2025/02/26 15:45:22 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PROMPT_H
|
|
# define PROMPT_H
|
|
|
|
# include "minishell.h"
|
|
|
|
void print_banner(void);
|
|
char *ft_prompt(t_minishell *msh);
|
|
void history_write(char *line);
|
|
void history_load(void);
|
|
|
|
#endif // PROMPT_H
|