MCPcopy Create free account
hub / github.com/Atmosphere-NX/Atmosphere / IsDigit

Function IsDigit

libraries/libvapours/source/util/util_format_string.cpp:42–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40 using FormatSpecifierFlagStorage = std::underlying_type<FormatSpecifierFlag>::type;
41
42 constexpr ALWAYS_INLINE bool IsDigit(char c) {
43 return '0' <= c && c <= '9';
44 }
45
46 constexpr ALWAYS_INLINE u32 ParseU32(const char *&str) {
47 u32 value = 0;

Callers 8

ParseU32Function · 0.85
TVSNPrintfImplFunction · 0.85
get_ldnumberFunction · 0.85
f_printfFunction · 0.85
get_ldnumberFunction · 0.85
f_printfFunction · 0.85
get_ldnumberFunction · 0.85
f_printfFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected