source: buchla-68k/orig/DATE/LTIME.H

Last change on this file was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 559 bytes
Line 
1/*
2 =============================================================================
3 time.h -- header for the time package
4 Version 1 -- 1988-01-14
5 =============================================================================
6*/
7
8struct tm {
9
10 int tm_sec;
11 int tm_min;
12 int tm_hour;
13 int tm_mday;
14 int tm_mon;
15 int tm_year;
16 int tm_wday;
17 int tm_yday;
18 int tm_dst;
19};
20
21extern struct tm *lgmtime(), *lcltime();
22extern char *lctime(), *latime();
23extern int ltzset();
24extern long timezn;
25extern int daylite;
26extern char *ltzname[];
Note: See TracBrowser for help on using the repository browser.