home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / trl14db.zip / TRLPRG.EXE / ISEQUAL.PRG < prev    next >
Text File  |  1990-10-22  |  419b  |  17 lines

  1. ***********
  2. * ISEQUAL.PRG
  3. * by Tom Rettig and Leonard Zerman
  4. * Placed in the Public Domain by Tom Rettig Associates, 10/22/1990.
  5. *
  6. * SYNTAX: DO ISEQUAL <expL1>, <expL2> 
  7. * RETURN: <expL> true if both expressions are equal,
  8.           otherwise false
  9. ***********
  10. PARAMETERS par1, par2 
  11. tr_retl = (par1 .AND. par2) .OR. ( (.NOT. par1) .AND. (.NOT. par2) )
  12. IF fox
  13.    RETURN (tr_retl)
  14. ENDIF
  15. * eof isequal *
  16.  
  17.