2004-04-20 21:32:43 +00:00
|
|
|
#include <stdio.h>
|
2003-02-15 00:02:37 +00:00
|
|
|
#include <time.h>
|
2004-04-20 10:23:57 +00:00
|
|
|
#include <stdbool.h>
|
2003-02-15 00:02:37 +00:00
|
|
|
|
|
|
|
/* struct tm defined */
|
|
|
|
struct tm *get_time(void);
|
2004-04-20 10:23:57 +00:00
|
|
|
int set_time(struct tm *tm);
|
|
|
|
bool valid_time(struct tm *tm);
|