Skip to content
Snippets Groups Projects
Commit cea5419a authored by PAILLE Kyriann's avatar PAILLE Kyriann :8ball:
Browse files

Update stack.h

parent 1844cc8b
No related branches found
No related tags found
No related merge requests found
#include <stdio.h>
#include <stdlib.h>
#define TAILLEMAX 9
#include "location.h"
#include "game.h"
#include "Location.h"
typedef struct stack
{
int stack[TAILLEMAX];
int sommet;
struct stack *next;
} stack;
typedef struct Stack
{
Location* location;
struct Stack* next;
}Stack;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment