moitié tp 3
This commit is contained in:
14
DEV1.1/TP28/chaine.h
Normal file
14
DEV1.1/TP28/chaine.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user