You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
170 B

9 months ago
  1. #pragma once
  2. #include <stdint.h>
  3. typedef struct {
  4. uint16_t year;
  5. uint8_t month;
  6. uint8_t day;
  7. uint8_t hours;
  8. uint8_t minutes;
  9. uint8_t seconds;
  10. } zdate_t;