date_time () syscall, Get date-time from RTC
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 32s
Build documentation / build-and-deploy (push) Successful in 41s

This commit is contained in:
2026-04-12 21:13:20 +02:00
parent 6c01de8b0d
commit 245196b80f
12 changed files with 183 additions and 4 deletions

14
include/time.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef _TIME_H
#define _TIME_H
struct date_time {
int sec;
int min;
int hour;
int day;
int weekday;
int month;
int year;
};
#endif // _TIME_H