20 lines
1,007 B
C
20 lines
1,007 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* write.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/03 15:27:33 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:36:48 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef WRITE_H
|
|
# define WRITE_H
|
|
|
|
# include "me/types.h"
|
|
|
|
bool me_write(int fd, t_u8 *buffer, t_i64 size);
|
|
|
|
#endif
|