home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / MSGDP206.SZH / DATE.H < prev    next >
C/C++ Source or Header  |  1990-07-30  |  377b  |  26 lines

  1. /**
  2.  *
  3.  * date.h
  4.  *
  5.  * parse various string date formats into a unix style timestamp
  6.  * header file
  7.  *
  8.  * jim nutt
  9.  * 31 aug 1989
  10.  
  11.     PUBLIC DOMAIN
  12.  *
  13. **/
  14.  
  15. #include "pascal.h"
  16.  
  17. #ifndef DATE_H
  18. #define DATE_H
  19.  
  20. time_t _pascal parsedate(char *ds);
  21. char * _pascal atime(time_t now);
  22. char * _pascal mtime(time_t now);
  23. char * _pascal qtime(time_t now);
  24.  
  25. #endif
  26.