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 /lpvm.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 '')
-rw-r--r-- | lpvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,8 +58,8 @@ typedef union Instruction { | |||
58 | #define utf_to(inst) (((inst)->i.key << 8) | (inst)->i.aux) | 58 | #define utf_to(inst) (((inst)->i.key << 8) | (inst)->i.aux) |
59 | 59 | ||
60 | 60 | ||
61 | void printpatt (Instruction *p, int n); | 61 | LUAI_FUNC void printpatt (Instruction *p, int n); |
62 | const char *match (lua_State *L, const char *o, const char *s, const char *e, | 62 | LUAI_FUNC const char *match (lua_State *L, const char *o, const char *s, const char *e, |
63 | Instruction *op, Capture *capture, int ptop, short *labelf, const char **sfail); /* labeled failure */ | 63 | Instruction *op, Capture *capture, int ptop, short *labelf, const char **sfail); /* labeled failure */ |
64 | 64 | ||
65 | #endif | 65 | #endif |