MCPcopy Create free account
hub / github.com/DFHack/dfhack / luaO_fb2int

Function luaO_fb2int

depends/lua/src/lobject.c:57–59  ·  view source on GitHub ↗

converts back */

Source from the content-addressed store, hash-verified

55
56/* converts back */
57int luaO_fb2int (int x) {
58 return (x < 8) ? x : ((x & 7) + 8) << ((x >> 3) - 1);
59}
60
61
62/*

Callers 1

luaV_executeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected