MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / getLong

Method getLong

src/common/classes/BlrReader.h:114–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112 }
113
114 ULONG getLong()
115 {
116 const UCHAR b1 = getByte();
117 const UCHAR b2 = getByte();
118 const UCHAR b3 = getByte();
119 const UCHAR b4 = getByte();
120
121 return (b4 << 24) | (b3 << 16) | (b2 << 8) | b1;
122 }
123
124 UCHAR checkByte(UCHAR expected)
125 {

Callers 2

parseMethod · 0.80
PAR_marksFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected