Removed trailing whitespaces from .h and .c files using the
[obnox/wireshark/wip.git] / epan / dfilter / sttype-string.c
1 /*
2  * $Id: sttype-string.c,v 1.3 2002/08/28 20:40:56 jmayer Exp $
3  *
4  * Ethereal - Network traffic analyzer
5  * By Gerald Combs <gerald@zing.org>
6  * Copyright 2001 Gerald Combs
7  *
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
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.
18  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22  */
23
24 #include "syntax-tree.h"
25
26 static gpointer
27 string_new(gpointer string)
28 {
29         return (gpointer) g_strdup((char*) string);
30 }
31
32 static void
33 string_free(gpointer value)
34 {
35         g_free(value);
36 }
37
38
39 void
40 sttype_register_string(void)
41 {
42         static sttype_t string_type = {
43                 STTYPE_STRING,
44                 "STRING",
45                 string_new,
46                 string_free,
47         };
48
49         sttype_register(&string_type);
50 }