| 90 | |
| 91 | |
| 92 | static int os_remove (lua_State *L) { |
| 93 | const char *filename = luaL_checkstring(L, 1); |
| 94 | return luaL_fileresult(L, remove(filename) == 0, filename); |
| 95 | } |
| 96 | |
| 97 | |
| 98 | static int os_rename (lua_State *L) { |
nothing calls this directly
no test coverage detected