25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

25 satır
541 B

  1. /*
  2. ** $Id: lapi.h,v 2.7 2009/11/27 15:37:59 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