Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
311B

  1. ( strings being sent to parse routines are always null
  2. terminated )
  3. : _pc ( a -- n f, parse character )
  4. ( apostrophe is ASCII 39 )
  5. DUP 1+ C@ 39 = OVER 3 + C@ 39 = AND ( a f )
  6. NOT IF 0 EXIT THEN ( a 0 )
  7. ( surrounded by apos, good, return )
  8. 2+ C@ 1 ( n 1 )
  9. ;