Change test
This commit is contained in:
25
eval-final-projet/analyseur_xml.h
Normal file
25
eval-final-projet/analyseur_xml.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef __ANALYSEUR_XML__
|
||||
#define __ANALYSEUR_XML__
|
||||
|
||||
/* structures de donnees et fonctions pour arbre abstrait */
|
||||
|
||||
typedef struct n noeud;
|
||||
|
||||
struct n{
|
||||
char *nom;
|
||||
struct n *premier_fils;
|
||||
struct n *dernier_fils;
|
||||
struct n *suiv;
|
||||
};
|
||||
|
||||
FILE *yyin;
|
||||
|
||||
|
||||
void affiche_arbre(noeud *racine);
|
||||
int compare_arbres(noeud *racine1, noeud *racine2, int verbose);
|
||||
void libere_arbre(noeud *r);
|
||||
|
||||
/* analyseur */
|
||||
|
||||
noeud *analyseur_xml(void);
|
||||
#endif
|
||||
Reference in New Issue
Block a user