33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* include.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mc <mc@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/31 16:22:09 by mc #+# #+# */
|
|
/* Updated: 2024/10/31 18:03:26 by mc ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef INCLUDE_H
|
|
# define INCLUDE_H
|
|
|
|
# include <errno.h>
|
|
# include <fcntl.h>
|
|
# include <linux/types.h>
|
|
# include <math.h>
|
|
# include <stdarg.h>
|
|
# include <stdbool.h>
|
|
# include <stdint.h>
|
|
# include <stdio.h>
|
|
# include <stdlib.h>
|
|
# include <string.h>
|
|
# include <unistd.h>
|
|
# include <X11/keysym.h>
|
|
# include <X11/X.h>
|
|
|
|
# include "libft.h"
|
|
# include "mlx.h"
|
|
|
|
#endif
|