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.
so_long/get_map.c

38 lines
1.1 KiB
C
Raw Normal View History

2024-01-08 13:33:55 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_map.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/08 13:13:18 by adjoly #+# #+# */
/* Updated: 2024/01/08 13:22:56 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "so_long.h"
int ft_countline_fd(int fd)
{
size_t line_count;
ssize_t rd;
while ()
{
}
return (line_count);
}
char **ft_read_map(char *file_name)
{
char **map_read;
int fd;
map_read = ft_countline_fd(fd);
return
}