27 lines
356 B
C
27 lines
356 B
C
#ifndef _TIME_H
|
|
#define _TIME_H
|
|
/*#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef unsigned long time_t;
|
|
|
|
struct Time_Structure {
|
|
int tm_sec;
|
|
int tm_min;
|
|
int tm_hour;
|
|
int tm_mday;
|
|
int tm_mon;
|
|
int tm_year;
|
|
int tm_wday;
|
|
int tm_yday;
|
|
int tm_isdst;
|
|
} typedef tm;
|
|
|
|
time_t time (time_t* timer);
|
|
}*/
|
|
|
|
|
|
#endif |