mirror of
https://github.com/DavidGailleton/AdventOfCode-2025.git
synced 2026-01-27 07:21:59 +00:00
27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 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
|