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

Function d_getul

dep/hfsutils/libhfs/data.c:140–147  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

138 * DESCRIPTION: marshal 4 unsigned bytes into local host format
139 */
140unsigned long d_getul(register const unsigned char *ptr)
141{
142 return
143 (((unsigned long) ptr[0] << 24) |
144 ((unsigned long) ptr[1] << 16) |
145 ((unsigned long) ptr[2] << 8) |
146 ((unsigned long) ptr[3] << 0));
147}
148
149/*
150 * NAME: data->putsb()

Callers 4

insertxFunction · 0.85
deletexFunction · 0.85
bt_deleteFunction · 0.85
bt_searchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected