submodule: Fix t7400, t7405, t7406 for msysGit
[git/dscho.git] / kwset.h
bloba21b2eadfdf9f760c170f10c069a06853105eee5
1 /* This file has been copied from commit e7ac713d^ in the GNU grep git
2 * repository. A few small changes have been made to adapt the code to
3 * Git.
4 */
6 /* kwset.h - header declaring the keyword set library.
7 Copyright (C) 1989, 1998, 2005 Free Software Foundation, Inc.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
22 02110-1301, USA. */
24 /* Written August 1989 by Mike Haertel.
25 The author may be reached (Email) at the address mike@ai.mit.edu,
26 or (US mail) as Mike Haertel c/o Free Software Foundation. */
28 struct kwsmatch
30 int index; /* Index number of matching keyword. */
31 size_t offset[1]; /* Offset of each submatch. */
32 size_t size[1]; /* Length of each submatch. */
35 struct kwset_t;
36 typedef struct kwset_t* kwset_t;
38 /* Return an opaque pointer to a newly allocated keyword set, or NULL
39 if enough memory cannot be obtained. The argument if non-NULL
40 specifies a table of character translations to be applied to all
41 pattern and search text. */
42 extern kwset_t kwsalloc(char const *);
44 /* Incrementally extend the keyword set to include the given string.
45 Return NULL for success, or an error message. Remember an index
46 number for each keyword included in the set. */
47 extern const char *kwsincr(kwset_t, char const *, size_t);
49 /* When the keyword set has been completely built, prepare it for
50 use. Return NULL for success, or an error message. */
51 extern const char *kwsprep(kwset_t);
53 /* Search through the given buffer for a member of the keyword set.
54 Return a pointer to the leftmost longest match found, or NULL if
55 no match is found. If foundlen is non-NULL, store the length of
56 the matching substring in the integer it points to. Similarly,
57 if foundindex is non-NULL, store the index of the particular
58 keyword found therein. */
59 extern size_t kwsexec(kwset_t, char const *, size_t, struct kwsmatch *);
61 /* Deallocate the given keyword set and all its associated storage. */
62 extern void kwsfree(kwset_t);