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.

17 lines
431B

  1. ( parsed is tight, all comments ahead. We read the first char
  2. outside of the loop because it *has* to be nonzero, which
  3. means _pdacc *has* to return 0.
  4. Then, we check for '-'. If we get it, we advance by one,
  5. recurse and invert result.
  6. We loop until _pdacc is nonzero, which means either WS or
  7. non-digit. 1 means WS, which means parsing was a success.
  8. -1 means non-digit, which means we have a non-decimal. )