home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 5
/
05.iso
/
a
/
a075
/
1.img
/
TOOLKIT1.EXE
/
SST73.PRG
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1989-08-08
|
264 b
|
16 lines
********************
FUNCTION Right_just
PARAMETERS _a, _b
* _a is the right justified string
* _b is the column to right justify to
IF PCOUNT() = 1
_b = 79
ENDIF
RETURN(IF(LEN(_a) > _b, 0, _b - LEN(_a)))
* End of File