God knows what's modified
This commit is contained in:
@@ -3,11 +3,18 @@
|
||||
|
||||
#include "luastack.hpp"
|
||||
|
||||
// Clear a table. Takes the table as a parameter.
|
||||
int table_equal(lua_State *L);
|
||||
int table_findremove(lua_State *L);
|
||||
int table_append(lua_State *L);
|
||||
int table_find(lua_State *L);
|
||||
int table_empty(lua_State *L);
|
||||
int table_count(lua_State *L);
|
||||
int table_clear(lua_State *L);
|
||||
|
||||
// Takes an object O. If O is a table, returns it, otherwise
|
||||
// returns a new table.
|
||||
int table_coerce(lua_State *L);
|
||||
int queue_create(lua_State *L);
|
||||
int queue_push(lua_State *L);
|
||||
int queue_pop(lua_State *L);
|
||||
int queue_size(lua_State *L);
|
||||
int queue_nth(lua_State *L);
|
||||
|
||||
#endif // TABLE_HPP
|
||||
|
||||
Reference in New Issue
Block a user