1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.

24 lines
1.2 KiB
C
Raw Normal View History

2023-08-03 23:16:27 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* write.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: axdubois <axdubois@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/31 23:17:55 by axdubois #+# #+# */
/* Updated: 2023/08/02 19:21:49 by axdubois ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef WRITE_H
# define WRITE_H
#include "../../includes/utils-h/utils.h"
#include "../../includes/utils-h/charobj.h"
#include "../../includes/algo-h/algo.h"
void ft_putchar(char c);
void ft_print(char *str);
void ft_print_result(t_square sq,t_charobj c,t_coords *listobj,int file);
#endif