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

12 lines
197 B
C

#ifndef TIME_TIME_H_
#define TIME_TIME_H_
#include <stdint.h>
#include <stddef.h>
#include "sysdefs/time.h"
void time_get(Time *time);
timeunix_t time_tounix(Time *time);
#endif // TIME_TIME_H_