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 /lpprint.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 'lpprint.h')
-rw-r--r-- | lpprint.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -13,12 +13,12 @@ | |||
13 | 13 | ||
14 | #if defined(LPEG_DEBUG) | 14 | #if defined(LPEG_DEBUG) |
15 | 15 | ||
16 | void printpatt (Instruction *p, int n); | 16 | LUAI_FUNC void printpatt (Instruction *p, int n); |
17 | void printtree (TTree *tree, int ident); | 17 | LUAI_FUNC void printtree (TTree *tree, int ident); |
18 | void printktable (lua_State *L, int idx); | 18 | LUAI_FUNC void printktable (lua_State *L, int idx); |
19 | void printcharset (const byte *st); | 19 | LUAI_FUNC void printcharset (const byte *st); |
20 | void printcaplist (Capture *cap, Capture *limit); | 20 | LUAI_FUNC void printcaplist (Capture *cap, Capture *limit); |
21 | void printinst (const Instruction *op, const Instruction *p); | 21 | LUAI_FUNC void printinst (const Instruction *op, const Instruction *p); |
22 | 22 | ||
23 | #else | 23 | #else |
24 | 24 | ||