svn commit: r225589 - user/gabor/tre-integration/include

Gabor Kovesdan gabor at FreeBSD.org
Thu Sep 15 15:12:18 UTC 2011


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


More information about the svn-src-user mailing list