- Anem per la linea 1550 de la passada 1 (sintaxis)

This commit is contained in:
2024-01-24 14:46:56 +01:00
parent eaa6b01808
commit 433136c46a
5 changed files with 974 additions and 993 deletions

11
crt.cpp Normal file
View File

@@ -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;
}