@@ -0,0 +1,11 @@
#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;
}
The note is not visible to the blocked user.