rl_clear_history()

This commit is contained in:
2024-04-29 13:01:14 +02:00
parent d05e304475
commit 03e108b625

View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/05 18:19:26 by marde-vr #+# #+# */
/* Updated: 2024/04/26 10:53:29 by marde-vr ### ########.fr */
/* Updated: 2024/04/29 13:00:22 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -15,6 +15,7 @@
void ft_exit(t_msh *msh, int exit_code)
{
free_msh(msh);
rl_clear_history();
exit(exit_code);
}