| 99 | } |
| 100 | |
| 101 | inline bool is_identifier_numeric(const string& id) { |
| 102 | return id.find_first_not_of("0123456789") == string::npos; |
| 103 | } |
| 104 | |
| 105 | inline bool check_for_leading_0(const string& str) { |
| 106 | return str.length() > 1 && str[0] == '0'; |
no outgoing calls
no test coverage detected