check if a specific character is a digit NOTE: Visual C isdigit() gives assert error if char > 256
| 806 | // check if a specific character is a digit |
| 807 | // NOTE: Visual C isdigit() gives assert error if char > 256 |
| 808 | bool ASBase::isDigit(char ch) const |
| 809 | { |
| 810 | return (ch >= '0' && ch <= '9'); |
| 811 | } |
| 812 | |
| 813 | // check if a specific character is a digit separator |
| 814 | bool ASBase::isDigitSeparator(const string& line, int i) const |
no outgoing calls
no test coverage detected