blob: 8fbc5b1c852cda83465f320935b3f8f26951cb53 (
plain)
1
2
3
4
5
6
7
8
|
#include <stdio.h>
#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);
|