Structures » Historique » Version 1
  Patrice Nadeau, 2024-01-27 15:03 
  
| 1 | 1 | Patrice Nadeau | # Structures | 
|---|---|---|---|
| 2 | |||
| 3 | ## Règles | ||
| 4 | 1. Comportent au maximum 31 caractères | ||
| 5 | 1. En minuscule | ||
| 6 | 1. Commence par une lettre | ||
| 7 | |||
| 8 | ## Exemple | ||
| 9 | ```c | ||
| 10 | /** | ||
| 11 | * @brief Structure d'un menu local | ||
| 12 | * @sa MenuSelect | ||
| 13 | */ | ||
| 14 | struct menu { | ||
| 15 | /** @brief Caractère utilisé pour l'item */ | ||
| 16 | char choice; | ||
| 17 | /** @brief Description de l'item */ | ||
| 18 | char *item; | ||
| 19 | }; | ||
| 20 | ``` | ||
| 21 | |||
| 22 | ## Justifications | 
