This commit is contained in:
David Gailleton
2025-12-16 14:38:00 +01:00
parent 0a617cc507
commit a11db9327e
5 changed files with 1367 additions and 0 deletions

27
05_b/aoc05.h Normal file
View File

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