home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / trl14db.zip / TRLPRG.EXE / LJUST.PRG < prev    next >
Text File  |  1990-10-22  |  448b  |  20 lines

  1. ***********
  2. * LJUST.PRG
  3. * by Tom Rettig and Leonard Zerman
  4. * Placed in the Public Domain by Tom Rettig Associates, 10/22/1990.
  5. *
  6. * SYNTAX: DO LJUST WITH <expC> 
  7. * RETURN: <expC> with leading blanks moved to the end 
  8. ***********
  9. PARAMETERS par1
  10. CALL Trpass  WITH par1
  11. CALL Trexe   WITH "LJUST"
  12. CALL Trexe   WITH "TRRETCLEN"
  13. IF fox
  14.    PRIVATE tr_temp
  15.    tr_temp = SUBSTR(tr_retc,1,tr_retn)
  16.    RETURN (tr_temp)
  17. ENDIF
  18. * eof ljust *
  19.  
  20.