mirror of
https://github.com/DavidGailleton/AdventOfCode-2025.git
synced 2026-01-27 07:21:59 +00:00
02 bonus WIP
This commit is contained in:
29
02_b/aoc02.h
Normal file
29
02_b/aoc02.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* aoc02.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/12/05 13:22:54 by dgaillet #+# #+# */
|
||||
/* Updated: 2025/12/05 16:14:53 by dgaillet ### ########lyon.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef AOC02_H
|
||||
# define AOC02_H
|
||||
|
||||
# include <stdlib.h>
|
||||
|
||||
typedef struct s_comb
|
||||
{
|
||||
long long first;
|
||||
long long second;
|
||||
long long *invalids;
|
||||
int nb_invalid;
|
||||
struct s_comb *next;
|
||||
} t_comb;
|
||||
|
||||
t_comb *ft_parsing(int fd);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user