| 3 | |
| 4 | extern const signed char hexval_table[256]; |
| 5 | static inline unsigned int hexval(unsigned char c) |
| 6 | { |
| 7 | return hexval_table[c]; |
| 8 | } |
| 9 | |
| 10 | /* |
| 11 | * Convert two consecutive hexadecimal digits into a char. Return a |
no outgoing calls
no test coverage detected