diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-09-13 23:31:38 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-09-13 23:31:38 -0700 |
| commit | 4135115229d27c54b70cd945e2211e652ab58d2f (patch) | |
| tree | d81a088a3ee56b7f28252c14d2ffe2ba1d0bd7ae /types.h | |
| parent | 1570dd55e8f3601e72893d6954044317973d7c60 (diff) | |
Spruced up a bunch of stuff, tweaked the grammar, added docs
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -12,7 +12,6 @@ enum VMOpcode { VM_EMPTY = 0, VM_ANYCHAR = 1, - VM_ANYTHING_BUT, VM_STRING, VM_RANGE, VM_NOT, @@ -34,7 +33,7 @@ enum VMOpcode { */ typedef struct vm_op_s { enum VMOpcode op; - unsigned int multiline:1; + unsigned int multiline:1, negate:1; const char *start, *end; // Length of the match, if constant, otherwise -1 ssize_t len; |
