10 lines
152 B
C
10 lines
152 B
C
#include <time.h>
|
|
|
|
void clock_init();
|
|
void set_time(time_t time);
|
|
time_t get_time();
|
|
void set_alarm(time_t time);
|
|
|
|
//TODO REMOVE ME
|
|
void test_clock();
|