diff --git a/stack.h b/stack.h new file mode 100644 index 0000000000000000000000000000000000000000..58e69fc996fc98d3b0bd3b7ae1226ef54105f263 --- /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; +