MCPcopy Create free account
hub / github.com/ElementsProject/lightning / add_overflows_u64

Function add_overflows_u64

common/overflows.h:11–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9}
10
11static inline bool add_overflows_u64(uint64_t a, uint64_t b)
12{
13 return (a + b) < a;
14}
15
16static inline bool mul_overflows_u64(uint64_t a, uint64_t b)
17{

Callers 6

json_to_millionthsFunction · 0.85
from_numberFunction · 0.85
from_numbersFunction · 0.85
amount_msat_addFunction · 0.85
amount_sat_addFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected