mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
480 B
23 lines
480 B
/*
|
|
** $Id: lapi.h,v 1.6 1999/09/20 14:57:29 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 luaA_putObjectOnTop (void);
|
|
|
|
#endif
|
|
|