epoc32/include/stdapis/glib-2.0/glib/gpattern.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
     1.1 --- a/epoc32/include/stdapis/glib-2.0/glib/gpattern.h	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/stdapis/glib-2.0/glib/gpattern.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,46 @@
     1.4 -gpattern.h
     1.5 +/* GLIB - Library of useful routines for C programming
     1.6 + * Copyright (C) 1995-1997, 1999  Peter Mattis, Red Hat, Inc.
     1.7 + * Portions copyright (c) 2006 Nokia Corporation.  All rights reserved. 
     1.8 + *
     1.9 + * This library is free software; you can redistribute it and/or
    1.10 + * modify it under the terms of the GNU Lesser General Public
    1.11 + * License as published by the Free Software Foundation; either
    1.12 + * version 2 of the License, or (at your option) any later version.
    1.13 + *
    1.14 + * This library is distributed in the hope that it will be useful,
    1.15 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    1.17 + * Lesser General Public License for more details.
    1.18 + *
    1.19 + * You should have received a copy of the GNU Lesser General Public
    1.20 + * License along with this library; if not, write to the
    1.21 + * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    1.22 + * Boston, MA 02111-1307, USA.
    1.23 + */
    1.24 +#ifndef __G_PATTERN_H__
    1.25 +#define __G_PATTERN_H__
    1.26 +
    1.27 +#include <_ansi.h>
    1.28 +#include <glib/gtypes.h>
    1.29 +
    1.30 +G_BEGIN_DECLS
    1.31 +
    1.32 +
    1.33 +typedef struct _GPatternSpec    GPatternSpec;
    1.34 +
    1.35 +IMPORT_C GPatternSpec* g_pattern_spec_new       (const gchar  *pattern);
    1.36 +IMPORT_C void          g_pattern_spec_free      (GPatternSpec *pspec);
    1.37 +IMPORT_C gboolean      g_pattern_spec_equal     (GPatternSpec *pspec1,
    1.38 +					GPatternSpec *pspec2);
    1.39 +IMPORT_C gboolean      g_pattern_match          (GPatternSpec *pspec,
    1.40 +					guint         string_length,
    1.41 +					const gchar  *string,
    1.42 +					const gchar  *string_reversed);
    1.43 +IMPORT_C gboolean      g_pattern_match_string   (GPatternSpec *pspec,
    1.44 +					const gchar  *string);
    1.45 +IMPORT_C gboolean      g_pattern_match_simple   (const gchar  *pattern,
    1.46 +					const gchar  *string);
    1.47 +
    1.48 +G_END_DECLS
    1.49 +
    1.50 +#endif /* __G_PATTERN_H__ */