Module to manipulate function headers.

This commit is contained in:
Roberto Ierusalimschy
1995-10-04 11:20:26 -03:00
parent ec785a1d65
commit f132ac03bc
2 changed files with 79 additions and 0 deletions

20
func.h Normal file
View File

@@ -0,0 +1,20 @@
#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