20 lines
995 B
C
20 lines
995 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* quit.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/07 12:54:50 by maiboyer #+# #+# */
|
|
/* Updated: 2024/05/07 12:55:08 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef QUIT_H
|
|
#define QUIT_H
|
|
|
|
#include "me/types.h"
|
|
|
|
void quit(t_i32 exit_code);
|
|
|
|
#endif /* QUIT_H */
|