* Tests if the given character is a decimal digit. * @param[in] c character to test * @return true if the argument is a decimal digit; otherwise false. */
| 134 | * @return true if the argument is a decimal digit; otherwise false. |
| 135 | */ |
| 136 | constexpr bool IsDigit(char c) |
| 137 | { |
| 138 | return c >= '0' && c <= '9'; |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Tests if the given character is a whitespace character. The whitespace characters |
no outgoing calls