New repo setup

This commit is contained in:
2024-05-28 14:50:00 -05:00
commit f68c320396
51 changed files with 4612 additions and 0 deletions

27
include/time.h Normal file
View 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