moitié tp 3

This commit is contained in:
2024-01-29 17:28:51 +01:00
parent cffb424f64
commit eb581c8a31
45 changed files with 964 additions and 16 deletions

14
DEV1.1/TP28/chaine.h Normal file
View 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