lapi.h 541 B

123456789101112131415161718192021222324
  1. /*
  2. ** $Id: lapi.h,v 2.9 2015/03/06 19:49:50 roberto Exp $
  3. ** Auxiliary functions from Lua API
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lapi_h
  7. #define lapi_h
  8. #include "llimits.h"
  9. #include "lstate.h"
  10. #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
  11. "stack overflow");}
  12. #define adjustresults(L,nres) \
  13. { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
  14. #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
  15. "not enough elements in the stack")
  16. #endif