Blame view

projetfinal/projet.h 540 Bytes
e2e3c812   Emilie10   projet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  
  
  #include <string.h>
  #include <stdio.h>
  #include <stdlib.h>
  #include <stdbool.h>
  
  
  struct noeud{
  	char valeur; 	 
  	struct noeud* liste_noeud;
  	int nbfils; 
  	bool complet; 
  };
  
  struct dictionnaire{
  	struct noeud *tetes; 
  	int nbelem;  
  }; 
  
  extern void extern void init_dictionnaire(struct dictionnaire*) ;(struct dictionnaire*) extern void init_dictionnaire(struct dictionnaire*) ; 
  extern void cons_dictionnaire(struct dictionnaire*, char*);
  extern void extern void ajout_mot(struct dictionnaire * , char*) ;(struct dictionnaire * , char*) extern void ajout_mot(struct dictionnaire * , char*) ; 
  extern bool extern bool appartient_mot(struct dictionnaire *D, char * MOT) ;(struct dictionnaire *D, char * MOT) extern bool appartient_mot(struct dictionnaire *D, char * MOT) ; 
  extern void correction(struct dictionnaire *D, char *phrase);