-
Notifications
You must be signed in to change notification settings - Fork 1
/
checkclib.c
47 lines (42 loc) · 1.01 KB
/
checkclib.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <time.h>
#include <setjmp.h>
#include <ctype.h>
#include "lapi.h"
#include "lauxlib.h"
#include "lcode.h"
#include "lctype.h"
#include "ldebug.h"
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "llex.h"
#include "llimits.h"
#include "lmem.h"
#include "lobject.h"
#include "lopcodes.h"
#include "lopnames.h"
#include "lparser.h"
#include "lprefix.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "luaconf.h"
#include "lua.h"
#include "lualib.h"
#include "lundump.h"
#include "lvm.h"
#include "lzio.h"
static const char *const CLIBS = "_CLIBS";
extern void lua_settop(lua_State *, int);
extern void * lua_touserdata(lua_State *, int);
extern int lua_getfield(lua_State *, int, const char *);
extern int lua_getfield(lua_State *, int, const char *);
extern void *checkclib (lua_State *L, const char *path) {
void *plib;
lua_getfield(L, (-1000000 - 1000), CLIBS);
lua_getfield(L, -1, path);
plib = lua_touserdata(L, -1);
lua_settop(L, -(2)-1);
return plib;
}