#ifndef GST_REG #define GST_REG #include #include typedef struct reg_st * reg_st; /* Le tableau contient au plus taille_tab instructions */ reg_st reg_init (int *actif, int *entree, int *sortie); void reg_evalue (reg_st reg); void reg_libere (reg_st reg); #endif /* GST_REG */