home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Bitstrip
-
- PARAMETERS _bitc, _pad
-
- * This function is to remove any soft-carriage return/line-
- * feed combinations and replace them with hard returns with
- * optional blank spacing in front of those characters
-
- IF PCOUNT() = 1
- _pad = 0
- ENDIF
- RETURN(STRTRAN(_bitc, CHR(141)+CHR(10),CHR(13)+CHR(10)+SPACE(_pad)))
-
- * End of File