20 lines
No EOL
1 KiB
C
20 lines
No EOL
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* read.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/03 15:21:19 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:37:03 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef READ_H
|
|
# define READ_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_usize me_read(int fd, t_u8 *buffer, t_i64 buffer_max, bool *eof_out);
|
|
|
|
#endif |