Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

1234567891011
  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. )