diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-04-28 10:33:53 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-04-28 10:33:53 -0300 |
commit | 460a35cbcb33fbc56f5a658b96a793b9bb8963e9 (patch) | |
tree | 138df91e9dec0544b64bad3334d01ca38d2b7408 /lpvm.h | |
parent | 503126fec29117e31d633b81203f887b99040c4a (diff) | |
download | lpeg-460a35cbcb33fbc56f5a658b96a793b9bb8963e9.tar.gz lpeg-460a35cbcb33fbc56f5a658b96a793b9bb8963e9.tar.bz2 lpeg-460a35cbcb33fbc56f5a658b96a793b9bb8963e9.zip |
New type name 'uint' (unsigned int)
Diffstat (limited to 'lpvm.h')
-rw-r--r-- | lpvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ typedef union Instruction { | |||
65 | #define utf_to(inst) (((inst)->i.aux2.key << 8) | (inst)->i.aux1) | 65 | #define utf_to(inst) (((inst)->i.aux2.key << 8) | (inst)->i.aux1) |
66 | 66 | ||
67 | 67 | ||
68 | int charinset (const Instruction *i, const byte *buff, unsigned int c); | 68 | int charinset (const Instruction *i, const byte *buff, uint c); |
69 | void printpatt (Instruction *p, int n); | 69 | void printpatt (Instruction *p, int n); |
70 | const char *match (lua_State *L, const char *o, const char *s, const char *e, | 70 | const char *match (lua_State *L, const char *o, const char *s, const char *e, |
71 | Instruction *op, Capture *capture, int ptop); | 71 | Instruction *op, Capture *capture, int ptop); |