Files
pepe_port/crt.cpp

11 lines
156 B
C++

#include "crt.h"
#include <time.h>
uint8_t get_hours()
{
time_t t;
struct tm *tm;
time (&t);
tm = localtime (&t);
return tm->tm_hour;
}