Files
DEV/DEV1.1/TP28/chaine.h

14 lines
249 B
C

#ifndef CHAINE_H
#define CHAINE_H
struct maillon_s {
char valeur;
struct maillon_s* suivant;
};
typedef struct maillon_s maillon ;
void push(char nouv, maillon** debut);
double pop(maillon** debut);
int empty(const maillon* debut);
#endif