Go to the documentation of this file. 14 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ 17 #define adjustresults(L,nres) \ 18 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } 20 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \ 21 "not enough elements in the stack")