2d2a846b25
I'm planning a string reform and it's standing in the way.
13 lines
248 B
Plaintext
13 lines
248 B
Plaintext
: +! TUCK @ + SWAP ! ;
|
|
: [entry] ( w -- )
|
|
H@ SWAP
|
|
BEGIN C@+ ( w+1 c ) ?DUP IF C, 0 ELSE 1 THEN UNTIL DROP
|
|
H@ SWAP - ( sz )
|
|
( write prev value )
|
|
H@ CURRENT @ - ,
|
|
C, ( write size )
|
|
H@ CURRENT !
|
|
;
|
|
|
|
: (entry) WORD [entry] ;
|