This commit is contained in:
David Gailleton
2025-12-16 10:57:14 +01:00
parent 63bb1bc416
commit 0a617cc507
4 changed files with 1334 additions and 0 deletions

26
05/aoc05.h Normal file
View File

@@ -0,0 +1,26 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* aoc05.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/16 10:28:12 by dgaillet #+# #+# */
/* Updated: 2025/12/16 10:55:28 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
#ifndef AOC05_H
# define AOC05_H
typedef struct s_range
{
long long start;
long long end;
void *next;
} t_range;
t_range *parsing(int fd);
void lst_clear(t_range *lst);
#endif