Spec de la pile : PILE/pile.h modifié

This commit is contained in:
Paul Faure 2020-10-01 15:29:19 +02:00
parent bb786733cf
commit 1b24e9c9dc

View file

@ -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