MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / searcher_C

Function searcher_C

3rd/lua-5.4.3/src/loadlib.c:580–585  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

578
579
580static int searcher_C (lua_State *L) {
581 const char *name = luaL_checkstring(L, 1);
582 const char *filename = findfile(L, name, "cpath", LUA_CSUBSEP);
583 if (filename == NULL) return 1; /* module not found in this path */
584 return checkload(L, (loadfunc(L, filename, name) == 0), filename);
585}
586
587
588static int searcher_Croot (lua_State *L) {

Callers

nothing calls this directly

Calls 3

findfileFunction · 0.85
checkloadFunction · 0.85
loadfuncFunction · 0.85

Tested by

no test coverage detected