#ifndef CLOCK_H #define CLOCK_H #include void clockLoop(); bool isClockSet(); char *getClockStr(time_t epoch = 0); char *getStartupStr(); time_t getUptimeSeconds(); char *getUptimeStr(); bool isCorrectTime(time_t now); time_t clockCorrect(time_t t); void clockCorrect(time_t *t); #endif