aboutsummaryrefslogtreecommitdiff
path: root/func.h
diff options
context:
space:
mode:
Diffstat (limited to 'func.h')
-rw-r--r--func.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/func.h b/func.h
new file mode 100644
index 00000000..8d2d124d
--- /dev/null
+++ b/func.h
@@ -0,0 +1,20 @@
1#ifndef func_h
2#define func_h
3
4#include "types.h"
5
6/*
7** Header para funcoes.
8*/
9typedef struct TFunc
10{
11 struct TFunc *next;
12 char marked;
13 int size;
14 Byte *code;
15} TFunc;
16
17Long luaI_funccollector (void);
18void luaI_insertfunction (TFunc *f);
19
20#endif