mirror of
https://github.com/DavidGailleton/AdventOfCode-2025.git
synced 2026-01-27 07:21:59 +00:00
06
This commit is contained in:
26
06/aoc06.h
Normal file
26
06/aoc06.h
Normal file
@@ -0,0 +1,26 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* aoc06.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/12/16 15:27:06 by dgaillet #+# #+# */
|
||||
/* Updated: 2025/12/16 16:50:13 by dgaillet ### ########lyon.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef AOC06_H
|
||||
# define AOC06_H
|
||||
|
||||
typedef struct s_lst
|
||||
{
|
||||
unsigned long long nbrs[4];
|
||||
char sign;
|
||||
void *next;
|
||||
} t_lst;
|
||||
|
||||
t_lst *parsing(int fd);
|
||||
void lst_clear(t_lst *lst);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user