God knows what's modified

This commit is contained in:
2021-01-02 13:31:18 -05:00
parent c751678179
commit b03aada315
22 changed files with 1577 additions and 294 deletions

View File

@@ -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