MCPcopy Create free account
hub / github.com/MegEngine/MegCC / parse_uint64

Function parse_uint64

runtime/flatcc/include/flatcc/portable/pparseint.h:322–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320}
321
322static inline const char *parse_uint64(const char *buf, size_t len, uint64_t *value, int *status)
323{
324 buf = parse_integer(buf, len, value, status);
325 if (*status == PARSE_INTEGER_SIGNED) {
326 *status = PARSE_INTEGER_UNDERFLOW;
327 return 0;
328 }
329 return buf;
330}
331
332static inline const char *parse_hex_uint64(const char *buf, size_t len, uint64_t *value, int *status)
333{

Callers

nothing calls this directly

Calls 1

parse_integerFunction · 0.85

Tested by

no test coverage detected