Files
my-os-project2/share/sysdefs/time.h
2025-10-16 14:15:05 +02:00

16 lines
255 B
C

#ifndef SHARE_SYSDEFS_TIME_H_
#define SHARE_SYSDEFS_TIME_H_
typedef struct {
uint32_t second;
uint32_t minute;
uint32_t hour;
uint32_t day;
uint32_t month;
uint32_t year;
} Time;
typedef uint64_t timeunix_t;
#endif // SHARE_SYSDEFS_TIME_H_