source: buchla-68k/orig/DATE/TWS.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: 393 bytes
Line 
1/* tws.h */
2
3struct tws {
4 int tw_sec;
5 int tw_min;
6 int tw_hour;
7 int tw_mday;
8 int tw_mon;
9 int tw_year;
10 int tw_wday;
11 int tw_yday;
12 int tw_isdst;
13 int tw_zone;
14 int tw_sday;
15};
16
17char *dtime (), *dasctime (), *dtimezone (), *dctime (), *dtimenow ();
18struct tws *dlocaltime (), *dparsetime ();
Note: See TracBrowser for help on using the repository browser.