mirror of https://github.com/lua/lua
21 lines
297 B
C
21 lines
297 B
C
/*
|
|
** $Id: $
|
|
** auxiliar functions from Lua API
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef lapi_h
|
|
#define lapi_h
|
|
|
|
|
|
#include "lua.h"
|
|
#include "lobject.h"
|
|
|
|
|
|
TObject *luaA_Address (lua_Object o);
|
|
void luaA_pushobject (TObject *o);
|
|
void luaA_packresults (void);
|
|
int luaA_passresults (void);
|
|
|
|
#endif
|