12 lines
194 B
C++
12 lines
194 B
C++
#ifndef TABLE_HPP
|
|
#define TABLE_HPP
|
|
|
|
#include "luastack.hpp"
|
|
|
|
int lpx_table_clear(lua_State *L);
|
|
int lpx_table_coerce(lua_State *L);
|
|
|
|
void luaopen_lpx_table (lua_State *L);
|
|
|
|
#endif // TABLE_HPP
|