14 lines
249 B
C
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
|