| 534 | |
| 535 | |
| 536 | static int searcher_C (lua_State *L) { |
| 537 | const char *name = luaL_checkstring(L, 1); |
| 538 | const char *filename = findfile(L, name, "cpath", LUA_CSUBSEP); |
| 539 | if (filename == NULL) return 1; /* module not found in this path */ |
| 540 | return checkload(L, (loadfunc(L, filename, name) == 0), filename); |
| 541 | } |
| 542 | |
| 543 | |
| 544 | static int searcher_Croot (lua_State *L) { |