| 46 | |
| 47 | template <typename T> |
| 48 | T is_digit_func(const unsigned char c) |
| 49 | { |
| 50 | return (('0' <= c) && (c <= '9')) ? T(1) : T(0); |
| 51 | } |
| 52 | |
| 53 | template <typename T> |
| 54 | T to_num_func(const unsigned char c) |
nothing calls this directly
no outgoing calls
no test coverage detected