home *** CD-ROM | disk | FTP | other *** search
- *********
- * Function : ISWKEND
- * By : Tom Rettig
- * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
- *********
-
-
- FUNCTION ISWKEND
- * Syntax: ISWKEND( <expD> )
- * Return: True if <expD> occurs on a Saturday or Sunday, otherwise False
- *
- PARAMETERS tr_date
- RETURN DOW(tr_date)=7 .OR. DOW(tr_date)=1
- * eofunc eow *
-
-