lua/lapi.h

22 lines
432 B
C
Raw Normal View History

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