FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
emscripten/tests/lua/src/lapi.h at universal-python · JavaScriptIOT/emscripten · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JavaScriptIOT
/
emscripten
Public
forked from
emscripten-core/emscripten
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
emscripten
/
tests
/
lua
/
src
/
lapi.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (16 loc) · 541 Bytes
Breadcrumbs
emscripten
/
tests
/
lua
/
src
/
lapi.h
Copy path
File metadata and controls
24 lines (16 loc) · 541 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
** $Id: lapi.h,v 2.7 2009/11/27 15:37:59 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
Back
|
FazBrowse Home
|
New Git URL