mirror of
https://github.com/DavidGailleton/AdventOfCode-2025.git
synced 2026-01-27 07:21:59 +00:00
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* aoc04_b.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/12/15 16:15:37 by dgaillet #+# #+# */
|
|
/* Updated: 2025/12/15 16:33:20 by dgaillet ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef AOC04_B_H
|
|
# define AOC04_B_H
|
|
|
|
typedef struct s_co
|
|
{
|
|
int i;
|
|
int j;
|
|
void *next;
|
|
} t_co;
|
|
|
|
t_co *new_co(int i, int j);
|
|
void co_add_back(t_co **lst, t_co *new);
|
|
void clear_lst(t_co *lst);
|
|
|
|
#endif
|