MCPcopy Create free account
hub / github.com/git/git / copy_le32

Function copy_le32

archive-zip.c:151–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149}
150
151static void copy_le32(unsigned char *dest, unsigned int n)
152{
153 dest[0] = 0xff & n;
154 dest[1] = 0xff & (n >> 010);
155 dest[2] = 0xff & (n >> 020);
156 dest[3] = 0xff & (n >> 030);
157}
158
159static void copy_le64(unsigned char *dest, uint64_t n)
160{

Callers 6

copy_le32_clampFunction · 0.85
write_zip_data_descFunction · 0.85
set_zip_header_data_descFunction · 0.85
write_zip_entryFunction · 0.85
write_zip64_trailerFunction · 0.85
write_zip_trailerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected