Updated Spanish translation
[anjuta-git-plugin.git] / plugins / valgrind / vgrulepattern.h
blobfc4ba9196963d6432bc276f22ee6b398c2bf58b8
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Authors: Jeffrey Stedfast <fejj@ximian.com>
5 * Copyright 2003 Ximian, Inc. (www.ximian.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 #ifndef __VG_RULE_PATTERN_H__
25 #define __VG_RULE_PATTERN_H__
27 #include "vgrule.h"
28 #include "vgerror.h"
30 #ifdef __cplusplus
31 extern "C" {
32 #pragma }
33 #endif /* __cplusplus */
35 typedef struct _VgRulePattern VgRulePattern;
37 VgRulePattern *vg_rule_pattern_new (VgRule *rule);
38 void vg_rule_pattern_free (VgRulePattern *pat);
40 gboolean vg_rule_pattern_matches (VgRulePattern *pat, VgError *err);
42 #ifdef __cplusplus
44 #endif /* __cplusplus */
46 #endif /* __VG_RULE_PATTERN_H__ */