home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
sys
/
timeb.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
416b
|
26 lines
#ifndef _TIMEB_H
#define _TIMEB_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#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 *));
#ifdef __cplusplus
}
#endif
#endif