fuck that shit

This commit is contained in:
sylvain099
2016-03-06 22:47:07 +01:00
parent a86fe33ac4
commit b99867ed91
2 changed files with 308 additions and 187 deletions

View File

@@ -21,45 +21,45 @@ void syntaxError (void);
void syntaxErrorMsg( const char * msg );
n_prog *programme (void);
void optDecVariables (void);
void listeDecVariables (void);
void listeDecVariablesBis (void);
void declarationVariable (void);
void optTailleTableau (void);
void listeDecFonctions (void);
void declarationFonction (void);
void listeParam (void);
void optListeDecVariables (void);
void instruction (void);
void instructionAffect (void);
void instructionBloc (void);
void listeInstructions (void);
void instructionSi (void);
void optSinon (void);
void instructionTantque (void);
void instructionAppel (void);
void instructionRetour (void);
void instructionEcriture (void);
void instructionPour (void);
void instructionVide (void);
void expression (void);
void expressionBis (void);
void conjonction (void);
void conjonctionBis (void);
void negation (void);
void comparaison (void);
void comparaisonBis (void);
void expression (void);
n_l_dec *optDecVariables (void);
n_l_dec *listeDecVariables (void);
n_l_dec *listeDecVariablesBis (void);
n_dec *declarationVariable (void);
int optTailleTableau (void);
n_l_dec *listeDecFonctions (void);
n_dec *declarationFonction (void);
n_l_dec *listeParam (void);
n_l_dec *optListeDecVariables (void);
n_instr *instruction (void);
n_instr *instructionAffect (void);
n_instr *instructionBloc (void);
n_l_instr *listeInstructions (void);
n_instr *instructionSi (void);
n_instr *optSinon (void);
n_instr *instructionTantque (void);
n_instr *instructionAppel (void);
n_instr *instructionRetour (void);
n_instr *instructionEcriture (void);
n_instr *instructionPour (void);
n_instr *instructionVide (void);
n_exp *expression (void);
n_exp *expressionBis (n_exp *herite);
n_exp *conjonction (void);
n_exp *conjonctionBis(n_exp *herite);
n_exp *negation (void);
n_exp *comparaison (void);
n_exp *comparaisonBis (n_exp *herite);
n_exp *expression (void);
n_exp *expArith (void);
n_exp *expArithBis(n_exp *herite);
n_exp *terme (void);
n_exp *termeBis(n_exp *herite);
n_exp *facteur (void);
void var (void);
void optIndice (void);
n_exp *appelFct (void);
void listeExpressions (void);
void listeExpressionsBis (void);
n_var *var (void);
n_exp *optIndice (void);
n_appel *appelFct (void);
n_l_exp *listeExpressions (void);
n_l_exp *listeExpressionsBis ();
#endif