MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / d_getsl

Function d_getsl

dep/hfsutils/libhfs/data.c:127–134  ·  view source on GitHub ↗

* NAME: data->getsl() * DESCRIPTION: marshal 4 signed bytes into local host format */

Source from the content-addressed store, hash-verified

125 * DESCRIPTION: marshal 4 signed bytes into local host format
126 */
127signed long d_getsl(register const unsigned char *ptr)
128{
129 return
130 ((( signed long) ptr[0] << 24) |
131 ((unsigned long) ptr[1] << 16) |
132 ((unsigned long) ptr[2] << 8) |
133 ((unsigned long) ptr[3] << 0));
134}
135
136/*
137 * NAME: data->getul()

Callers 2

r_packdirentFunction · 0.85
hfs_createFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected