8 lines
164 B
C
8 lines
164 B
C
|
#include <time.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
/* struct tm defined */
|
||
|
struct tm *get_time(void);
|
||
|
int set_time(const struct tm *tm);
|
||
|
bool valid_time(const struct tm *tm);
|