(re_match_context_t): Add dfa member.
This commit is contained in:
parent
c7baafd574
commit
a2fd078ab1
@ -556,6 +556,11 @@ typedef struct
|
|||||||
{
|
{
|
||||||
/* The string object corresponding to the input string. */
|
/* The string object corresponding to the input string. */
|
||||||
re_string_t input;
|
re_string_t input;
|
||||||
|
#if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
|
||||||
|
re_dfa_t *const dfa;
|
||||||
|
#else
|
||||||
|
re_dfa_t *dfa;
|
||||||
|
#endif
|
||||||
/* EFLAGS of the argument of regexec. */
|
/* EFLAGS of the argument of regexec. */
|
||||||
int eflags;
|
int eflags;
|
||||||
/* Where the matching ends. */
|
/* Where the matching ends. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user