mirror of
https://github.com/lua/lua
synced 2024-11-25 22:29:39 +03:00
24 lines
479 B
C
24 lines
479 B
C
/*
|
|
** $Id: lapi.h,v 1.5 1999/08/16 20:52:00 roberto Exp roberto $
|
|
** Auxiliary 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 (const TObject *o);
|
|
void luaA_packresults (void);
|
|
int luaA_passresults (void);
|
|
TaggedString *luaA_nextvar (TaggedString *g);
|
|
int luaA_next (const Hash *t, int i);
|
|
lua_Object put_luaObjectonTop (void);
|
|
|
|
#endif
|