Files
amiga-tz/library/time_tm.h
T
2015-07-29 20:14:38 +02:00

25 lines
524 B
C

//--------------------------------------------------------------------------//
// This file is in the public domain. //
//--------------------------------------------------------------------------//
#ifndef _TIME_TM_H
#define _TIME_TM_H
extern char *tzname[2];
struct tm {
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;
long tm_gmtoff;
char *tm_zone;
};
#endif