summaryrefslogtreecommitdiff
path: root/csrc/rich4_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'csrc/rich4_time.h')
-rw-r--r--csrc/rich4_time.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/csrc/rich4_time.h b/csrc/rich4_time.h
new file mode 100644
index 0000000..f75e7dc
--- /dev/null
+++ b/csrc/rich4_time.h
@@ -0,0 +1,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);