| 254 | #endif |
| 255 | |
| 256 | inline void strtoval_impl(int64_t *val, const char *str, char **endptr, |
| 257 | int base) { |
| 258 | *val = __strtoll_impl(str, endptr, base); |
| 259 | } |
| 260 | |
| 261 | inline void strtoval_impl(uint64_t *val, const char *str, char **endptr, |
| 262 | int base) { |
no outgoing calls
no test coverage detected