Files
AdventOfCode-2025/02/aoc02.h
David Gailleton 86c2e68987 FIRST COMMIT
2025-12-05 17:37:02 +01:00

30 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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