From e2e3c812e8a782296d60a04b078e56f88d1dd919 Mon Sep 17 00:00:00 2001 From: Emilie10 Date: Sat, 4 May 2019 11:09:43 +0200 Subject: [PATCH] projet --- projetfinal/projet.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+), 0 deletions(-) create mode 100644 projetfinal/projet.h diff --git a/projetfinal/projet.h b/projetfinal/projet.h new file mode 100644 index 0000000..7a045ac --- /dev/null +++ b/projetfinal/projet.h @@ -0,0 +1,25 @@ + + +#include +#include +#include +#include + + +struct noeud{ + char valeur; + struct noeud* liste_noeud; + int nbfils; + bool complet; +}; + +struct dictionnaire{ + struct noeud *tetes; + int nbelem; +}; + +extern void init_dictionnaire(struct dictionnaire*) ; +extern void cons_dictionnaire(struct dictionnaire*, char*); +extern void ajout_mot(struct dictionnaire * , char*) ; +extern bool appartient_mot(struct dictionnaire *D, char * MOT) ; +extern void correction(struct dictionnaire *D, char *phrase); -- libgit2 0.21.2