libregexp: allow up to 127 captured subexpressions in one regexp
128 counting with the entire expression match ($0).
This commit is contained in:
parent
727ce0e123
commit
cc4571fec6
@ -5,7 +5,7 @@
|
|||||||
typedef unsigned char uchar;
|
typedef unsigned char uchar;
|
||||||
#define nelem(x) (sizeof(x)/sizeof((x)[0]))
|
#define nelem(x) (sizeof(x)/sizeof((x)[0]))
|
||||||
|
|
||||||
#define NSUBEXP 32
|
#define NSUBEXP 128
|
||||||
typedef struct Resublist Resublist;
|
typedef struct Resublist Resublist;
|
||||||
struct Resublist
|
struct Resublist
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user