New repo setup
This commit is contained in:
27
include/time.h
Normal file
27
include/time.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user