Date: Thu, 15 Sep 2011 15:12:18 +0000 (UTC) From: Gabor Kovesdan <gabor@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r225589 - user/gabor/tre-integration/include Message-ID: <201109151512.p8FFCIRU078679@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gabor Date: Thu Sep 15 15:12:18 2011 New Revision: 225589 URL: http://svn.freebsd.org/changeset/base/225589 Log: - Merge from grep Modified: user/gabor/tre-integration/include/fastmatch.h Modified: user/gabor/tre-integration/include/fastmatch.h ============================================================================== --- user/gabor/tre-integration/include/fastmatch.h Thu Sep 15 15:09:45 2011 (r225588) +++ user/gabor/tre-integration/include/fastmatch.h Thu Sep 15 15:12:18 2011 (r225589) @@ -13,17 +13,17 @@ typedef struct { size_t len; wchar_t *wpattern; bool *wescmap; - int hasdot; - int qsBc[UCHAR_MAX + 1]; - int *bmGs; + unsigned int qsBc[UCHAR_MAX + 1]; + unsigned int *bmGs; char *pattern; bool *escmap; - int defBc; + unsigned int defBc; void *qsBc_table; - int *sbmGs; + unsigned int *sbmGs; const char *re_endp; /* flags */ + bool hasdot; bool bol; bool eol; bool word; @@ -31,6 +31,7 @@ typedef struct { bool newline; bool nosub; bool matchall; + bool reversed; } fastmatch_t; extern int
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201109151512.p8FFCIRU078679>