collapseos/blk/446

12 lines
308 B
Plaintext
Raw Normal View History

2020-04-26 11:54:07 +10:00
( strings being sent to parse routines are always null
terminated )
: (parsec) ( a -- n f )
( apostrophe is ASCII 39 )
2020-05-03 10:32:20 +10:00
DUP C@ 39 = OVER 2+ C@ 39 = AND ( a f )
NOT IF 0 EXIT THEN ( a 0 )
2020-04-26 11:54:07 +10:00
( surrounded by apos, good, return )
1+ C@ 1 ( n 1 )
;