| 2352 | } |
| 2353 | |
| 2354 | inline uint char_val(char X) |
| 2355 | { |
| 2356 | return (uint) (X >= '0' && X <= '9' ? X-'0' : |
| 2357 | X >= 'A' && X <= 'Z' ? X-'A'+10 : |
| 2358 | X-'a'+10); |
| 2359 | } |
| 2360 | |
| 2361 | Item_hex_string::Item_hex_string() |
| 2362 | { |
no outgoing calls
no test coverage detected