home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
BBS
/
NETMAIL
/
MSGD2SRC.ZIP
/
DATE.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-07-30
|
377 b
|
26 lines
/**
*
* date.h
*
* parse various string date formats into a unix style timestamp
* header file
*
* jim nutt
* 31 aug 1989
PUBLIC DOMAIN
*
**/
#include "pascal.h"
#ifndef DATE_H
#define DATE_H
time_t _pascal parsedate(char *ds);
char * _pascal atime(time_t now);
char * _pascal mtime(time_t now);
char * _pascal qtime(time_t now);
#endif