summaryrefslogtreecommitdiff
path: root/src/user/include/knob/time.h
blob: 4b84697b6a501de8787e5d73375ea538455003e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdint.h>

struct time {
  uint16_t year;//ad
  uint8_t month;//jan = 1
  uint8_t day;
  uint8_t hour;//24-hour, midnight = 0
  uint8_t minute;
  uint8_t second;
  uint32_t timestamp;
};

struct time get_time();