1 /* GPattern copy that supports raw (non-utf8) matching
2  * based on: GLIB - Library of useful routines for C programming
3  * Copyright (C) 1995-1997, 1999  Peter Mattis, Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 
21 #ifndef __PATTERN_SPEC_H__
22 #define __PATTERN_SPEC_H__
23 
24 #include <glib.h>
25 
26 G_BEGIN_DECLS
27 
28 typedef enum
29 {
30   MATCH_MODE_AUTO = 0,
31   MATCH_MODE_UTF8,
32   MATCH_MODE_RAW
33 } MatchMode;
34 
35 typedef struct _PatternSpec PatternSpec;
36 
37 PatternSpec * pattern_spec_new       (const gchar  * pattern,
38                                       MatchMode      match_mode);
39 
40 void          pattern_spec_free      (PatternSpec  * pspec);
41 
42 gboolean      pattern_match_string   (PatternSpec  * pspec,
43                                       const gchar  * string);
44 
45 G_END_DECLS
46 
47 #endif /* __PATTERN_SPEC_H__ */
48