William A. Kennington III | cda3c1e | 2022-12-03 16:56:19 -0800 | [diff] [blame] | 1 | #include <stdplus/numeric/str.hpp> |
| 2 | |
| 3 | namespace stdplus::detail |
| 4 | { |
| 5 | template char* uintToStr<16>(char*, uintptr_t, uint8_t) noexcept; |
| 6 | template char* uintToStr<10>(char*, uintptr_t, uint8_t) noexcept; |
William A. Kennington III | b0bcbaf | 2022-12-09 02:17:22 -0800 | [diff] [blame] | 7 | template uintptr_t strToUInt<16>(std::string_view); |
| 8 | template uintptr_t strToUInt<10>(std::string_view); |
William A. Kennington III | cda3c1e | 2022-12-03 16:56:19 -0800 | [diff] [blame] | 9 | } // namespace stdplus::detail |