Files
mop3/include/time.h
kamkow1 245196b80f
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 32s
Build documentation / build-and-deploy (push) Successful in 41s
date_time () syscall, Get date-time from RTC
2026-04-12 21:13:20 +02:00

15 lines
159 B
C

#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