home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST27.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  237 b   |  14 lines

  1. ********************
  2.  
  3. FUNCTION Multple_of
  4.  
  5.    PARAMETERS _the_number, _the_base
  6.  
  7.    IF PCOUNT() = 0
  8.       RETURN(.F.)
  9.    ENDIF
  10.  
  11.    RETURN(IF(_the_number / _the_base = INT(_the_number / _the_base), .T., .F.))
  12.  
  13. * End of File
  14.