williamr@2
|
1 |
/* GLIB - Library of useful routines for C programming
|
williamr@2
|
2 |
* Copyright (C) 1995-1997, 1999 Peter Mattis, Red Hat, Inc.
|
williamr@2
|
3 |
* Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
williamr@2
|
4 |
*
|
williamr@2
|
5 |
* This library is free software; you can redistribute it and/or
|
williamr@2
|
6 |
* modify it under the terms of the GNU Lesser General Public
|
williamr@2
|
7 |
* License as published by the Free Software Foundation; either
|
williamr@2
|
8 |
* version 2 of the License, or (at your option) any later version.
|
williamr@2
|
9 |
*
|
williamr@2
|
10 |
* This library is distributed in the hope that it will be useful,
|
williamr@2
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
williamr@2
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
williamr@2
|
13 |
* Lesser General Public License for more details.
|
williamr@2
|
14 |
*
|
williamr@2
|
15 |
* You should have received a copy of the GNU Lesser General Public
|
williamr@2
|
16 |
* License along with this library; if not, write to the
|
williamr@2
|
17 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
williamr@2
|
18 |
* Boston, MA 02111-1307, USA.
|
williamr@2
|
19 |
*/
|
williamr@2
|
20 |
#ifndef __G_PATTERN_H__
|
williamr@2
|
21 |
#define __G_PATTERN_H__
|
williamr@2
|
22 |
|
williamr@2
|
23 |
#include <_ansi.h>
|
williamr@2
|
24 |
#include <glib/gtypes.h>
|
williamr@2
|
25 |
|
williamr@2
|
26 |
G_BEGIN_DECLS
|
williamr@2
|
27 |
|
williamr@2
|
28 |
|
williamr@2
|
29 |
typedef struct _GPatternSpec GPatternSpec;
|
williamr@2
|
30 |
|
williamr@2
|
31 |
IMPORT_C GPatternSpec* g_pattern_spec_new (const gchar *pattern);
|
williamr@2
|
32 |
IMPORT_C void g_pattern_spec_free (GPatternSpec *pspec);
|
williamr@2
|
33 |
IMPORT_C gboolean g_pattern_spec_equal (GPatternSpec *pspec1,
|
williamr@2
|
34 |
GPatternSpec *pspec2);
|
williamr@2
|
35 |
IMPORT_C gboolean g_pattern_match (GPatternSpec *pspec,
|
williamr@2
|
36 |
guint string_length,
|
williamr@2
|
37 |
const gchar *string,
|
williamr@2
|
38 |
const gchar *string_reversed);
|
williamr@2
|
39 |
IMPORT_C gboolean g_pattern_match_string (GPatternSpec *pspec,
|
williamr@2
|
40 |
const gchar *string);
|
williamr@2
|
41 |
IMPORT_C gboolean g_pattern_match_simple (const gchar *pattern,
|
williamr@2
|
42 |
const gchar *string);
|
williamr@2
|
43 |
|
williamr@2
|
44 |
G_END_DECLS
|
williamr@2
|
45 |
|
williamr@2
|
46 |
#endif /* __G_PATTERN_H__ */
|