mirror of
https://github.com/DavidGailleton/AdventOfCode-2025.git
synced 2026-01-26 23:11:58 +00:00
04 bonus
This commit is contained in:
27
04_b/aoc04_b.h
Normal file
27
04_b/aoc04_b.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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
|
||||
Reference in New Issue
Block a user