MCPcopy Create free account
hub / github.com/baidu/tera / ParseNumber

Function ParseNumber

src/common/base/string_number.cc:88–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88bool ParseNumber(const char* str, signed char* value, char** endptr, int base) {
89 return ParseNumberT<long>(str, value, endptr, base);
90}
91
92bool ParseNumber(const char* str, unsigned char* value, char** endptr, int base) {
93 return ParseNumberT<unsigned long>(str, value, endptr, base);

Callers

nothing calls this directly

Calls 1

ParseFloatNumberFunction · 0.85

Tested by

no test coverage detected