12 lines
215 B
C++
12 lines
215 B
C++
#ifndef LPX_TABLE_HPP
|
|
#define LPX_TABLE_HPP
|
|
|
|
#include "lpx-stack-manager.hpp"
|
|
|
|
int lpx_table_clear(lua_State *L);
|
|
int lpx_table_coerce(lua_State *L);
|
|
|
|
void luaopen_lpx_table (lua_State *L);
|
|
|
|
#endif // LPX_TABLE_HPP
|