blob: 81e936d797c1af80ebf64a48dfa86c83ed45d5ef [file] [log] [blame]
William A. Kennington IIIcda3c1e2022-12-03 16:56:19 -08001#include <stdplus/numeric/str.hpp>
2
3namespace stdplus::detail
4{
5template char* uintToStr<16>(char*, uintptr_t, uint8_t) noexcept;
6template char* uintToStr<10>(char*, uintptr_t, uint8_t) noexcept;
William A. Kennington IIIb0bcbaf2022-12-09 02:17:22 -08007template uintptr_t strToUInt<16>(std::string_view);
8template uintptr_t strToUInt<10>(std::string_view);
William A. Kennington IIIcda3c1e2022-12-03 16:56:19 -08009} // namespace stdplus::detail