1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00
lua/lfunc.h
Roberto Ierusalimschy c787dccd9b "const" !!!
1999-08-16 17:52:00 -03:00

24 lines
423 B
C

/*
** $Id: lfunc.h,v 1.5 1997/12/15 16:17:20 roberto Exp roberto $
** Lua Function structures
** See Copyright Notice in lua.h
*/
#ifndef lfunc_h
#define lfunc_h
#include "lobject.h"
TProtoFunc *luaF_newproto (void);
Closure *luaF_newclosure (int nelems);
void luaF_freeproto (TProtoFunc *l);
void luaF_freeclosure (Closure *l);
const char *luaF_getlocalname (TProtoFunc *func, int local_number, int line);
#endif