diff options
Diffstat (limited to 'lcode.h')
| -rw-r--r-- | lcode.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lcode.h b/lcode.h new file mode 100644 index 00000000..8ea81cbd --- /dev/null +++ b/lcode.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | ** $Id: $ | ||
| 3 | ** Code generator for Lua | ||
| 4 | ** See Copyright Notice in lua.h | ||
| 5 | */ | ||
| 6 | |||
| 7 | #ifndef lcode_h | ||
| 8 | #define lcode_h | ||
| 9 | |||
| 10 | #include "llex.h" | ||
| 11 | #include "lobject.h" | ||
| 12 | |||
| 13 | |||
| 14 | int luaK_primitivecode (LexState *ls, Instruction i); | ||
| 15 | int luaK_code (LexState *ls, Instruction i); | ||
| 16 | void luaK_fixjump (LexState *ls, int pc, int dest); | ||
| 17 | |||
| 18 | |||
| 19 | #endif | ||
