des trucs

This commit is contained in:
2024-04-02 17:55:30 +02:00
parent b4c9665dd3
commit c9bd04d42c
6 changed files with 55 additions and 19 deletions

View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/18 15:46:50 by tomoron #+# #+# */
/* Updated: 2024/04/02 15:04:59 by tomoron ### ########.fr */
/* Updated: 2024/04/02 17:22:43 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -48,3 +48,9 @@ void print_parsed_cmd(t_cmd *cmd)
}
printf("\n");
}
void print_msh_struct(t_msh *msh)
{
printf("in_fd : %d\n", msh->in_fd);
printf("out_fd : %d\n", msh->out_fd);
}