summaryrefslogtreecommitdiff
path: root/csrc/rich4_time.h
blob: f75e7dcc18d9af1e6727869147411ba1ce3869ed (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdint.h>

typedef struct
{
  uint8_t day;
  uint8_t month;
  uint16_t year;
  uint16_t dayofweek;
} rich4_time;

void get_local_time(rich4_time *t);