mirror of
https://github.com/lua/lua.git
synced 2025-01-14 05:43:00 +08:00
15d48576ea
therefore they do not have a "baptism" name. Changes in debug API to acomodate that.
25 lines
314 B
C
25 lines
314 B
C
#ifndef func_h
|
|
#define func_h
|
|
|
|
#include "types.h"
|
|
#include "lua.h"
|
|
|
|
/*
|
|
** Header para funcoes.
|
|
*/
|
|
typedef struct TFunc
|
|
{
|
|
struct TFunc *next;
|
|
char marked;
|
|
int size;
|
|
Byte *code;
|
|
int lineDefined;
|
|
char *fileName;
|
|
} TFunc;
|
|
|
|
Long luaI_funccollector (void);
|
|
void luaI_insertfunction (TFunc *f);
|
|
|
|
|
|
#endif
|