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

Function fromwire_u64

wire/fromwire.c:86–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86u64 fromwire_u64(const u8 **cursor, size_t *max)
87{
88 be64 ret;
89
90 if (!fromwire(cursor, max, &ret, sizeof(ret)))
91 return 0;
92 return be64_to_cpu(ret);
93}
94
95s8 fromwire_s8(const u8 **cursor, size_t *max)
96{

Callers 15

fromwire_s64Function · 0.70
fromwire_htlc_stubFunction · 0.50
fromwire_hsm_utxoFunction · 0.50
fromwire_wally_tx_outputFunction · 0.50
runFunction · 0.50
runFunction · 0.50
new_test_caseFunction · 0.50
handle_custommsgFunction · 0.50
fromwire_onchain_feeFunction · 0.50

Calls 2

be64_to_cpuFunction · 0.85
fromwireFunction · 0.70

Tested by

no test coverage detected