home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 21.12 Isleap()
- 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 Isleap( param )
- LOCAL nyy := if(valtype(param)="D",year(param),param)
- LOCAL dtest := ctod("02/28/"+str(nyy,4))
- return (month(dtest+1)=2)
-
- // end of file CHP2112.PRG
-