diff options
author | Eduardo Bart <edub4rt@gmail.com> | 2020-08-23 20:09:40 -0300 |
---|---|---|
committer | Eduardo Bart <edub4rt@gmail.com> | 2020-08-23 21:13:18 -0300 |
commit | 988b733849c4050cbe7dea110d86c7c8eec6bf77 (patch) | |
tree | c88ea1e755e198cd5360a7a089e9a4327a73faac /lpcode.h | |
parent | 9d02c572fc0c45d76d73263e51b004be51f359fa (diff) | |
download | lpeglabel-988b733849c4050cbe7dea110d86c7c8eec6bf77.tar.gz lpeglabel-988b733849c4050cbe7dea110d86c7c8eec6bf77.tar.bz2 lpeglabel-988b733849c4050cbe7dea110d86c7c8eec6bf77.zip |
Fix name clashing issues with LPEG
Diffstat (limited to 'lpcode.h')
-rw-r--r-- | lpcode.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -11,14 +11,14 @@ | |||
11 | #include "lptree.h" | 11 | #include "lptree.h" |
12 | #include "lpvm.h" | 12 | #include "lpvm.h" |
13 | 13 | ||
14 | int tocharset (TTree *tree, Charset *cs); | 14 | LUAI_FUNC int tocharset (TTree *tree, Charset *cs); |
15 | int checkaux (TTree *tree, int pred); | 15 | LUAI_FUNC int checkaux (TTree *tree, int pred); |
16 | int fixedlen (TTree *tree); | 16 | LUAI_FUNC int fixedlen (TTree *tree); |
17 | int hascaptures (TTree *tree); | 17 | LUAI_FUNC int hascaptures (TTree *tree); |
18 | int lp_gc (lua_State *L); | 18 | LUAI_FUNC int lp_gc (lua_State *L); |
19 | Instruction *compile (lua_State *L, Pattern *p); | 19 | LUAI_FUNC Instruction *compile (lua_State *L, Pattern *p); |
20 | void realloccode (lua_State *L, Pattern *p, int nsize); | 20 | LUAI_FUNC void realloccode (lua_State *L, Pattern *p, int nsize); |
21 | int sizei (const Instruction *i); | 21 | LUAI_FUNC int sizei (const Instruction *i); |
22 | 22 | ||
23 | 23 | ||
24 | #define PEnullable 0 | 24 | #define PEnullable 0 |