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

  1. ********************
  2.  
  3. FUNCTION Bitstrip
  4.  
  5.    PARAMETERS _bitc, _pad
  6.  
  7.    * This function is to remove any soft-carriage return/line-
  8.    * feed combinations and replace them with hard returns with
  9.    * optional blank spacing in front of those characters
  10.                   
  11.    IF PCOUNT() = 1
  12.       _pad = 0
  13.    ENDIF
  14.    RETURN(STRTRAN(_bitc, CHR(141)+CHR(10),CHR(13)+CHR(10)+SPACE(_pad)))
  15.  
  16. * End of File
  17.