Actions
  Typedef » Historique » Révision 2
      « Précédent |
    Révision 2/3
      (diff)
      | Suivant »
    
    Patrice Nadeau, 2024-01-27 15:00 
    
    
Typedef¶
Règles¶
- En minuscule
 - Suivie de _t
 
Exemple¶
/**
* @brief Type de la structure dans la librairie `ds1305`
*/
typedef struct {
/** @brief Dernier deux chiffres : ≥ 00, ≤ 99 */
uint8_t year;
/** @brief 01 - 12 */
uint8_t month;
/** @brief 01 - 31 */
uint8_t date;
/** @brief 1 - 7 */
uint8_t day;
/** @brief 00 - 23 */
uint8_t hours;
/** @brief 00 - 59 */
uint8_t minutes;
/** @brief 00 - 59 */
uint8_t seconds;
} ds1305_time_t;
Justifications¶
Mis à jour par Patrice Nadeau il y a presque 2 ans · 2 révisions