mirror of https://github.com/rusefi/lua.git
21 lines
257 B
C
21 lines
257 B
C
|
#ifndef func_h
|
||
|
#define func_h
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
/*
|
||
|
** Header para funcoes.
|
||
|
*/
|
||
|
typedef struct TFunc
|
||
|
{
|
||
|
struct TFunc *next;
|
||
|
char marked;
|
||
|
int size;
|
||
|
Byte *code;
|
||
|
} TFunc;
|
||
|
|
||
|
Long luaI_funccollector (void);
|
||
|
void luaI_insertfunction (TFunc *f);
|
||
|
|
||
|
#endif
|