home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing: 18.31 Sqzdate()
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- function Sqz_d(dSquish)
- return I2bin( dSquish-ctod("01/01/80") )
-
- function Unsqz_d(cBinary)
- return ctod("01/01/80") + Bin2w(cBinary)
-
- // end of file CHP1831.PRG
-