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

  1. *******************
  2.  
  3. FUNCTION Places
  4.  
  5.    PARAMETERS _thenumber, _places
  6.  
  7.    IF PCOUNT() != 2
  8.       RETURN(0)
  9.    ELSEIF _places < 1
  10.       RETURN(0)
  11.    ENDIF
  12.  
  13.    _places = INT(_places)
  14.  
  15.    PRIVATE _base
  16.                    
  17.    _base = INT(_thenumber) / (10 * _places)
  18.  
  19.    _base = _base - INT(_base)
  20.  
  21.    RETURN( INT(_base * (10 * _places)))
  22.