blob: 8378deabaf0bce54045a874ea61746dcbaec5021 (
plain)
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
|
/*
** $Id: lfunc.h,v 1.2 2004/03/23 05:09:14 jbj Exp $
** Auxiliary functions to manipulate prototypes and closures
** See Copyright Notice in lua.h
*/
#ifndef lfunc_h
#define lfunc_h
#include "lobject.h"
/*@null@*/
Proto *luaF_newproto (lua_State *L)
/*@modifies L @*/;
/*@null@*/
Closure *luaF_newCclosure (lua_State *L, int nelems)
/*@modifies L @*/;
/*@null@*/
Closure *luaF_newLclosure (lua_State *L, int nelems, TObject *e)
/*@modifies L @*/;
/*@null@*/
UpVal *luaF_findupval (lua_State *L, StkId level)
/*@modifies L @*/;
void luaF_close (lua_State *L, StkId level)
/*@modifies L @*/;
void luaF_freeproto (lua_State *L, Proto *f)
/*@modifies L, f @*/;
void luaF_freeclosure (lua_State *L, Closure *c)
/*@modifies L, c @*/;
/*@observer@*/ /*@null@*/
const char *luaF_getlocalname (const Proto *func, int local_number, int pc)
/*@*/;
#endif
|