21 lines
1014 B
C
21 lines
1014 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* threads.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/27 11:37:07 by cchauvet #+# #+# */
|
|
/* Updated: 2023/04/27 11:37:08 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef THREADS_H
|
|
# define THREADS_H
|
|
# include "./data.h"
|
|
# include <stdbool.h>
|
|
|
|
bool threads_init(t_data *data);
|
|
|
|
#endif
|