home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP18.EXE / CHP1831.PRG < prev    next >
Encoding:
Text File  |  1991-04-30  |  447 b   |  18 lines

  1. /*
  2.    Listing: 18.31  Sqzdate()
  3.    Author: Joe Booth
  4.    Excerpted from "Clipper 5: A Developer's Guide"
  5.    Copyright (c) 1991 M&T Books
  6.                       501 Galveston Drive
  7.                       Redwood City, CA 94063-4728
  8.                       (415) 366-3600
  9. */
  10.  
  11. function Sqz_d(dSquish)
  12. return I2bin( dSquish-ctod("01/01/80") )
  13.  
  14. function Unsqz_d(cBinary)
  15. return ctod("01/01/80") + Bin2w(cBinary)
  16.  
  17. // end of file CHP1831.PRG
  18.