Unsigned version:
| 47 | |
| 48 | // Unsigned version: |
| 49 | bool ParseInteger(const char *str NONNULL, uint64_t &result, bool allowTrailing) { |
| 50 | while (isspace(*str)) |
| 51 | ++str; |
| 52 | if (*str == '+') |
| 53 | ++str; |
| 54 | return _parseUInt(str, result, allowTrailing); |
| 55 | } |
| 56 | |
| 57 | |
| 58 | // Signed version: |
no test coverage detected