| 219 | } |
| 220 | |
| 221 | static inline int hexchar_to_base10(int c) |
| 222 | { |
| 223 | return is_digit(c) ? (c - '0') : (is_big_alpha(c) ? (c - 'A' + 10) : (c - 'a' + 10)); |
| 224 | } |
| 225 | |
| 226 | void GluaTokenParser::_loadhexaesc(std::string &code, std::stringstream *ss) |
| 227 | { |
no test coverage detected