20 lines
1,006 B
C
20 lines
1,006 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* putstr_fd.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/08 04:42:45 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:35:53 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PUTSTR_FD_H
|
|
# define PUTSTR_FD_H
|
|
|
|
# include "me/types.h"
|
|
|
|
void me_putstr_fd(t_str str, int file);
|
|
|
|
#endif
|