static int reverse(lua_State *L) { int parnum=lua_gettop(L); for(int index=1;index<=parnum/2;index++) { lua_pushvalue(L,index); ...
確定! 回上一頁