home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
tos
/
updates
/
update14.zoo
/
include
/
sys
/
timeb.h
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-01-15
|
347 b
|
18 lines
#ifndef _TIMEB_H
#define _TIMEB_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
struct timeb {
long time; /* seconds since Jan 1., 1970 */
short millitm; /* milliseconds since "time" */
short timezone; /* minutes west of GMT */
short dstflag; /* if time zone can have DST */
};
__EXTERN int ftime __PROTO((struct timeb *));
#endif