Date functions (get current time)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* @author xamidev <xamidev@riseup.net>
|
||||
* @brief Date helper functions
|
||||
* @license GPL-3.0-only
|
||||
*/
|
||||
|
||||
#ifndef DATE_H
|
||||
#define DATE_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
struct date {
|
||||
uint64_t year;
|
||||
uint8_t month;
|
||||
uint8_t day;
|
||||
|
||||
uint8_t hour;
|
||||
uint8_t minute;
|
||||
uint8_t second;
|
||||
};
|
||||
|
||||
struct date date_timestamp_to_date(uint64_t timestamp);
|
||||
struct date date_now();
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user