1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2009-03-10 20:14:37 +03:00
|
|
|
** $Id: lapi.h,v 2.3 2006/07/11 15:53:29 roberto Exp roberto $
|
1998-06-19 20:14:09 +04:00
|
|
|
** Auxiliary functions from Lua API
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lapi_h
|
|
|
|
#define lapi_h
|
|
|
|
|
|
|
|
|
2006-07-11 19:53:29 +04:00
|
|
|
#include "llimits.h"
|
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2006-07-11 19:53:29 +04:00
|
|
|
#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top);}
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2009-03-10 20:14:37 +03:00
|
|
|
#define adjustresults(L,nres) \
|
|
|
|
{ if ((nres) == LUA_MULTRET && L->top >= L->ci->top) L->ci->top = L->top; }
|
|
|
|
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#endif
|