Files
my-os-project2/kernel/time/time.h
2025-10-15 23:08:23 +02:00

22 lines
333 B
C

#ifndef TIME_TIME_H_
#define TIME_TIME_H_
#include <stdint.h>
#include <stddef.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;
void time_get(Time *time);
timeunix_t time_tounix(Time *time);
#endif // TIME_TIME_H_