mirror of
https://github.com/DavidGailleton/AdventOfCode-2025.git
synced 2026-01-26 23:11:58 +00:00
05
This commit is contained in:
26
05/aoc05.h
Normal file
26
05/aoc05.h
Normal 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
|
||||
Reference in New Issue
Block a user