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

Upload New File

parent 6b267149
No related branches found
No related tags found
No related merge requests found
stack.h 0 → 100644
#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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment