Archived
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.
FDF/fdf.h

43 lines
1.4 KiB
C
Raw Permalink Normal View History

2023-12-12 13:28:15 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fdf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/11 05:10:42 by adjoly #+# #+# */
2023-12-23 09:25:01 +01:00
/* Updated: 2023/12/23 08:20:35 by adjoly ### ########.fr */
2023-12-12 13:28:15 +01:00
/* */
/* ************************************************************************** */
#ifndef FDF_H
# define FDF_H
# include <unistd.h>
# include <stdlib.h>
# include <stdio.h>
# include <string.h>
# include <limits.h>
# include <fcntl.h>
2023-12-18 17:19:34 +01:00
# include "libft/libft.h"
2023-12-12 13:28:15 +01:00
# include "MacroLibX/includes/mlx.h"
# include "get_next_line/get_next_line.h"
typedef struct s_mlx
{
void *mlx;
void *win;
} t_mlx;
2023-12-18 17:19:34 +01:00
typedef struct s_map
{
int y;
char *color;
2023-12-20 14:14:35 +01:00
} t_map;
2023-12-18 17:19:34 +01:00
2023-12-23 09:25:01 +01:00
// int ft_read_map(int fd, char **map);
// size_t ft_countline_fd(int fd);
// char **ft_getmap(char *file);
// char *get_next_line(int fd);
2023-12-18 17:19:34 +01:00
2023-12-12 13:28:15 +01:00
#endif