lapi.h 432 B

123456789101112131415161718192021
  1. /*
  2. ** $Id: lapi.h,v 2.5 2009/04/03 15:58:03 roberto Exp roberto $
  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. #endif