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