diff --git a/PILE/pile.h b/PILE/pile.h index e69de29..c56d9a2 100644 --- a/PILE/pile.h +++ b/PILE/pile.h @@ -0,0 +1,19 @@ +#ifndef PILE_H +#define PILE_H + +struct cell { + int val; + struct cell * suiv; +}; + +struct pile { + int taille; + struct cell * deb; +}; + +void init(struct pile ** une_pile); +int pop(struct pile * une_pile); +void push(int e, struct pile * une_pile); +void print(struct pile une_pile); + +#endif