2020-05-02 21:21:47 -04:00
|
|
|
( strings being sent to parse routines are always null
|
|
|
|
terminated )
|
|
|
|
|
|
|
|
: (parsec) ( a -- n f )
|
|
|
|
( apostrophe is ASCII 39 )
|
|
|
|
DUP C@ 39 = OVER 2+ C@ 39 = AND ( a f )
|
|
|
|
NOT IF 0 EXIT THEN ( a 0 )
|
|
|
|
( surrounded by apos, good, return )
|
|
|
|
1+ C@ 1 ( n 1 )
|
2020-04-24 14:10:40 -04:00
|
|
|
;
|
2020-04-23 15:14:14 -04:00
|
|
|
|