From 3f764e681f8d868fe725e9a573b3a1815194a559 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Fri, 12 May 2017 16:40:08 +0430 Subject: yup. lua. better than whatever shaky messy DSL i was gonna come up with for bruiseer. --- bruiser/lua-5.3.4/src/lapi.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 bruiser/lua-5.3.4/src/lapi.h (limited to 'bruiser/lua-5.3.4/src/lapi.h') diff --git a/bruiser/lua-5.3.4/src/lapi.h b/bruiser/lua-5.3.4/src/lapi.h new file mode 100644 index 0000000..6d36dee --- /dev/null +++ b/bruiser/lua-5.3.4/src/lapi.h @@ -0,0 +1,24 @@ +/* +** $Id: lapi.h,v 2.9 2015/03/06 19:49:50 roberto Exp $ +** Auxiliary functions from Lua API +** See Copyright Notice in lua.h +*/ + +#ifndef lapi_h +#define lapi_h + + +#include "llimits.h" +#include "lstate.h" + +#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ + "stack overflow");} + +#define adjustresults(L,nres) \ + { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } + +#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \ + "not enough elements in the stack") + + +#endif -- cgit v1.2.3