Helper function to check if a character is a digit
| 12 | namespace { |
| 13 | // Helper function to check if a character is a digit |
| 14 | inline bool isDigit(char c) { |
| 15 | return c >= '0' && c <= '9'; |
| 16 | } |
| 17 | |
| 18 | // Helper function to check if a character is whitespace |
| 19 | inline bool isSpace(char c) { |