This commit is contained in:
David Gailleton
2025-12-16 16:51:12 +01:00
parent a11db9327e
commit 79cecd7d27
4 changed files with 199 additions and 0 deletions

26
06/aoc06.h Normal file
View 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