aboutsummaryrefslogtreecommitdiff
path: root/lpvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-28 10:33:53 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-28 10:33:53 -0300
commit460a35cbcb33fbc56f5a658b96a793b9bb8963e9 (patch)
tree138df91e9dec0544b64bad3334d01ca38d2b7408 /lpvm.h
parent503126fec29117e31d633b81203f887b99040c4a (diff)
downloadlpeg-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lpvm.h b/lpvm.h
index 86114e0..a64d577 100644
--- a/lpvm.h
+++ b/lpvm.h
@@ -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
68int charinset (const Instruction *i, const byte *buff, unsigned int c); 68int charinset (const Instruction *i, const byte *buff, uint c);
69void printpatt (Instruction *p, int n); 69void printpatt (Instruction *p, int n);
70const char *match (lua_State *L, const char *o, const char *s, const char *e, 70const 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);