Projet

Général

Profil

Structures » Historique » Version 2

Patrice Nadeau, 2025-03-23 10:52

1 1 Patrice Nadeau
# Structures
2
3
## Exemple
4
```c
5
/**
6
* @brief Structure d'un menu local
7
* @sa MenuSelect
8
*/
9
struct menu {
10
/** @brief Caractère utilisé pour l'item */
11
char choice;
12
/** @brief Description de l'item */
13
char *item;
14
};
15
```
16
17
## Justifications