MCPcopy Index your code
hub / github.com/RsyncProject/rsync / read_shortint

Function read_shortint

io.c:1788–1793  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1786}
1787
1788unsigned short read_shortint(int f)
1789{
1790 char b[2];
1791 read_buf(f, b, 2);
1792 return (UVAL(b, 1) << 8) + UVAL(b, 0);
1793}
1794
1795int32 read_int(int f)
1796{

Callers 1

read_ndx_and_attrsFunction · 0.85

Calls 1

read_bufFunction · 0.70

Tested by

no test coverage detected