MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / unmakemask

Function unmakemask

Source/Misc/lua/src/lua.c:11751–11758  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11749
11750
11751static char *unmakemask (int mask, char *smask) {
11752int i = 0;
11753if (mask & LUA_MASKCALL) smask[i++] = 'c';
11754if (mask & LUA_MASKRET) smask[i++] = 'r';
11755if (mask & LUA_MASKLINE) smask[i++] = 'l';
11756smask[i] = '\0';
11757return smask;
11758}
11759
11760
11761static void gethooktable (lua_State *L) {

Callers 1

db_gethookFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected