home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
QBAS
/
PBC22B.ZIP
/
PBC$BAS.ZIP
/
ROLST.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-01-01
|
775b
|
20 lines
' +----------------------------------------------------------------------+
' | |
' | PBClone Copyright (c) 1990-1993 Thomas G. Hanlin III |
' | |
' +----------------------------------------------------------------------+
DECLARE SUB OrSt (St1$, St2$)
DECLARE SUB ShlSt (St$, BYVAL ShiftCount%)
DECLARE SUB ShrSt (St$, BYVAL ShiftCount%)
SUB RolSt (St$, ShiftCount%)
IF LEN(St$) > 0 AND ShiftCount% > 0 THEN
St1$ = St$
ShiftCount1% = LEN(St$) * 8& - CLNG(ShiftCount%)
ShlSt St$, ShiftCount%
ShrSt St1$, ShiftCount1%
OrSt St$, St1$
END IF
END SUB