BUT2/DEV/DEV1.1_suite/TP_Piles/Parenthèse/chaine.h~
2023-10-23 13:23:36 +02:00

21 lines
354 B
C

#ifndef PILE_CHAINEES_H
#define PILE_CHAINEES_H
typedef struct maillon{
char valeur;
struct maillon* suivant;
} maillon;
typedef struct pile{
maillon* adresse;
}pile;
void creerPile(pile* p_pile);
int empty(pile p_liste);
void push(pile* p_pile, char new_valeur);
char pop(pile* p_pile);
char top(pile p_pile);
void clear(pile* p_pile);
#endif