1.1 Avec un typedef

Voici la syntaxe :

1
2
3
4
5
typedef void (*action_t)(void);

...

action_t parole[3];

En fait, c'est plutôt facile, c'est comme un tableau statique normal.