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

Function io_pclose

Source/Misc/lua/src/lua.c:12022–12027  ·  view source on GitHub ↗

** function to close 'popen' files */

Source from the content-addressed store, hash-verified

12020** function to close 'popen' files
12021*/
12022static int io_pclose (lua_State *L) {
12023FILE **p = tofilep(L);
12024int ok = lua_pclose(L, *p);
12025*p = NULL;
12026return pushresult(L, ok, NULL);
12027}
12028
12029
12030/*

Callers

nothing calls this directly

Calls 1

pushresultFunction · 0.85

Tested by

no test coverage detected