1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Support OP_REPEAT and OP_REPEAT_INC

This commit is contained in:
TSUYUSATO Kitsune 2022-10-20 16:52:23 +09:00 committed by Yusuke Endoh
parent ea3d9893bf
commit f25bb291b4
3 changed files with 196 additions and 43 deletions

View file

@ -744,6 +744,8 @@ typedef struct {
typedef struct {
int lower;
int upper;
int base_num;
int inner_num;
} OnigRepeatRange;
typedef void (*OnigWarnFunc)(const char* s);