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

  1. ********************
  2.  
  3. FUNCTION Rounding
  4.  
  5.    PARAMETERS _rndsn, _rndspl
  6.  
  7.    IF TYPE("_rndsn") + TYPE("_rndspl") != "NN"
  8.       RETURN(-1)
  9.    ENDIF
  10.  
  11.    SET DECIMAL TO _rndspl
  12.  
  13.    RETURN(IF(_rndsn < 0, INT(_rndsn * 10^_rndspl -.5), INT(_rndsn*10^_rndspl+.5)) / 10^_rndspl)
  14.  
  15. * End of File
  16.  
  17.