20 lines
1013 B
C
20 lines
1013 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* format.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/28 15:44:56 by cchauvet #+# #+# */
|
|
/* Updated: 2023/03/28 15:44:57 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FORMAT_H
|
|
# define FORMAT_H
|
|
# include "../data/data.h"
|
|
|
|
char *ft_formater(t_data *data, const char *str);
|
|
|
|
#endif
|