diff options
author | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-06-29 04:48:34 +0000 |
---|---|---|
committer | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-06-29 04:48:34 +0000 |
commit | 6049d9f0ebdd55b8018e51d20fd42c899c5bcf54 (patch) | |
tree | 2138be8cae40616325d7dcddcb0aa37ec3524556 /lib/libc/regex/regex2.h | |
parent | 99063cf89eaf33fc019d82f1271512132f69f4fb (diff) |
Notes
Diffstat (limited to 'lib/libc/regex/regex2.h')
-rw-r--r-- | lib/libc/regex/regex2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libc/regex/regex2.h b/lib/libc/regex/regex2.h index cd7b962a39b6..af9cc58e4c95 100644 --- a/lib/libc/regex/regex2.h +++ b/lib/libc/regex/regex2.h @@ -35,6 +35,8 @@ * SUCH DAMAGE. * * @(#)regex2.h 8.4 (Berkeley) 3/20/94 + * + * $FreeBSD$ */ /* @@ -160,6 +162,8 @@ struct re_guts { int ncategories; /* how many character categories */ cat_t *categories; /* ->catspace[-CHAR_MIN] */ char *must; /* match must contain this string */ + int *charjump; /* Boyer-Moore char jump table */ + int *matchjump; /* Boyer-Moore match jump table */ int mlen; /* length of must */ size_t nsub; /* copy of re_nsub */ int backrefs; /* does it use back references? */ |