#ifndef __affiche_ARBRE_ABSTRAIT__ #define __affiche_ARBRE_ABSTRAIT__ #include "syntabs.h" #include "dico.h" void affiche_t_table(n_prog *n); void affiche_t_l_instr(n_l_instr *n); void affiche_t_instr(n_instr *n); void affiche_t_instr_si(n_instr *n); void affiche_t_instr_tantque(n_instr *n); void affiche_t_instr_faire(n_instr *n); void affiche_t_instr_pour(n_instr *n); void affiche_t_instr_affect(n_instr *n); void affiche_t_instr_appel(n_instr *n); void affiche_t_instr_retour(n_instr *n); void affiche_t_instr_ecrire(n_instr *n); int affiche_t_l_exp(n_l_exp *n); void affiche_t_exp(n_exp *n); void affiche_t_varExp(n_exp *n); void affiche_t_opExp(n_exp *n); void affiche_t_intExp(n_exp *n); void affiche_t_lireExp(n_exp *n); void affiche_t_appelExp(n_exp *n); void affiche_t_l_dec(n_l_dec *n); void affiche_t_dec(n_dec *n); void affiche_t_foncDec(n_dec *n); void affiche_t_varDec(n_dec *n); void affiche_t_tabDec(n_dec *n); void affiche_t_var(n_var *n); void affiche_t_var_simple(n_var *n); void affiche_t_var_indicee(n_var *n); void affiche_t_appel(n_appel *n); #endif