20 lines
1,000 B
C
20 lines
1,000 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* close.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/04 15:56:56 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:49:22 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CLOSE_H
|
|
# define CLOSE_H
|
|
|
|
# include "me/types.h"
|
|
|
|
bool me_close(t_file file, t_i32 *error);
|
|
|
|
#endif
|