tp3_C/symbole.h
2022-12-06 20:07:39 +01:00

13 lines
No EOL
135 B
C

#ifndef SYMBOLE_H
#define SYMBOLE_H
struct List{
char token;
void ( * Commande)(Etat *);
struct List * Lsuiv;
}
#endif