remove date from core, app_wasm.html

This commit is contained in:
krzosa
2025-01-04 08:38:19 +01:00
parent 1fca44fcfc
commit 6f795b7ea6
14 changed files with 208 additions and 82 deletions

View File

@@ -0,0 +1,12 @@
typedef struct os_date_t os_date_t;
struct os_date_t {
u16 ms;
u16 sec;
u16 min;
u16 hour;
u16 day;
u16 month;
u16 year;
};
fn os_date_t os_date_now(void);