From 870f92e2e81215dfc7ffb9f0b47e18e246c3fa92 Mon Sep 17 00:00:00 2001 From: PAILLE Kyriann <kyriann.paille9@etu.univ-lorraine.fr> Date: Sun, 8 Jan 2023 21:25:38 +0000 Subject: [PATCH] Upload New File --- stack.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 stack.h diff --git a/stack.h b/stack.h new file mode 100644 index 0000000..58e69fc --- /dev/null +++ b/stack.h @@ -0,0 +1,13 @@ +#include <stdio.h> +#include <stdlib.h> +#define TAILLEMAX 9 +#include "location.h" +#include "game.h" + +typedef struct stack +{ + int stack[TAILLEMAX]; + int sommet; + struct stack *next; +} stack; + -- GitLab